ruby-changes:14552
From: nobu <ko1@a...>
Date: Sun, 24 Jan 2010 05:47:34 +0900 (JST)
Subject: [ruby-changes:14552] Ruby:r26391 (trunk): * dir.c (dir_s_glob): get rid of comment starter.
nobu 2010-01-24 05:47:23 +0900 (Sun, 24 Jan 2010) New Revision: 26391 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=26391 Log: * dir.c (dir_s_glob): get rid of comment starter. Modified files: trunk/dir.c Index: dir.c =================================================================== --- dir.c (revision 26390) +++ dir.c (revision 26391) @@ -1733,8 +1733,8 @@ * regexp. * <code>\</code>:: Escapes the next metacharacter. * Note that this means you cannot use backslash in windows - * as part of a glob, i.e. Dir["c:\\*"] will not work - * use Dir["c:/*"] instead + * as part of a glob, i.e. Dir["c:\\foo*"] will not work + * use Dir["c:/foo*"] instead * * Dir["config.?"] #=> ["config.h"] * Dir.glob("config.?") #=> ["config.h"] -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/