diff options
| -rw-r--r-- | ChangeLog | 5 | ||||
| -rw-r--r-- | dir.c | 2 | ||||
| -rw-r--r-- | version.h | 2 |
3 files changed, 7 insertions, 2 deletions
@@ -1,3 +1,8 @@ +Tue Jun 9 15:13:14 2009 Nobuyoshi Nakada <nobu@ruby-lang.org> + + * dir.c (dir_s_glob): fixed rdoc. a patch from Joseph Pecoraro a + [ruby-core:23767]. + Tue Jun 9 10:58:48 2009 Nobuyoshi Nakada <nobu@ruby-lang.org> * Makefile.in, win32/Makefile.sub (RMALL): need for distclean-rdoc. @@ -1635,7 +1635,7 @@ dir_s_aref(int argc, VALUE *argv, VALUE obj) * match all files beginning with * <code>c</code>; <code>*c</code> will match * all files ending with <code>c</code>; and - * <code>*c*</code> will match all files that + * <code>\*c\*</code> will match all files that * have <code>c</code> in them (including at * the beginning or end). Equivalent to * <code>/ .* /x</code> in regexp. @@ -1,6 +1,6 @@ #define RUBY_VERSION "1.9.1" #define RUBY_RELEASE_DATE "2009-05-22" -#define RUBY_PATCHLEVEL 169 +#define RUBY_PATCHLEVEL 170 #define RUBY_VERSION_MAJOR 1 #define RUBY_VERSION_MINOR 9 #define RUBY_VERSION_TEENY 1 |
