ruby-changes:12108
From: yugui <ko1@a...>
Date: Sun, 21 Jun 2009 18:14:03 +0900 (JST)
Subject: [ruby-changes:12108] Ruby:r23779 (ruby_1_9_1): merges r23657 from trunk into ruby_1_9_1.
yugui 2009-06-21 18:13:48 +0900 (Sun, 21 Jun 2009) New Revision: 23779 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=23779 Log: merges r23657 from trunk into ruby_1_9_1. -- * dir.c (dir_s_glob): fixed rdoc. a patch from Joseph Pecoraro at [ruby-core:23767]. Modified files: branches/ruby_1_9_1/ChangeLog branches/ruby_1_9_1/dir.c branches/ruby_1_9_1/version.h Index: ruby_1_9_1/ChangeLog =================================================================== --- ruby_1_9_1/ChangeLog (revision 23778) +++ ruby_1_9_1/ChangeLog (revision 23779) @@ -1,3 +1,8 @@ +Tue Jun 9 15:13:14 2009 Nobuyoshi Nakada <nobu@r...> + + * 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@r...> * Makefile.in, win32/Makefile.sub (RMALL): need for distclean-rdoc. Index: ruby_1_9_1/dir.c =================================================================== --- ruby_1_9_1/dir.c (revision 23778) +++ ruby_1_9_1/dir.c (revision 23779) @@ -1635,7 +1635,7 @@ * 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. Index: ruby_1_9_1/version.h =================================================================== --- ruby_1_9_1/version.h (revision 23778) +++ ruby_1_9_1/version.h (revision 23779) @@ -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 -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/