[前][次][番号順一覧][スレッド一覧]

ruby-changes:11993

From: nobu <ko1@a...>
Date: Tue, 9 Jun 2009 15:13:29 +0900 (JST)
Subject: [ruby-changes:11993] Ruby:r23657 (trunk): * dir.c (dir_s_glob): fixed rdoc. a patch from Joseph Pecoraro at

nobu	2009-06-09 15:13:16 +0900 (Tue, 09 Jun 2009)

  New Revision: 23657

  http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=23657

  Log:
    * dir.c (dir_s_glob): fixed rdoc.  a patch from Joseph Pecoraro at
      [ruby-core:23767].

  Modified files:
    trunk/ChangeLog
    trunk/dir.c

Index: ChangeLog
===================================================================
--- ChangeLog	(revision 23656)
+++ ChangeLog	(revision 23657)
@@ -1,5 +1,8 @@
-Tue Jun  9 15:11:07 2009  Nobuyoshi Nakada  <nobu@r...>
+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].
+
 	* dir.c (sys_warning): get rid of type-punning function cast.
 
 	* dir.c (ruby_glob0): get rid of possible overflow.
Index: dir.c
===================================================================
--- dir.c	(revision 23656)
+++ dir.c	(revision 23657)
@@ -1652,7 +1652,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.

--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]