Skip to content

Commit c13d0b0

Browse files
committed
* dir.c (fnmatch): The * needs to be escaped to avoid formatting in
fnmatch comment. patched by @dalton. ruby#91 git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@34547 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
1 parent 198736f commit c13d0b0

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

ChangeLog

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
Sat Feb 11 06:00:48 2012 NARUSE, Yui <[email protected]>
2+
3+
* dir.c (fnmatch): The * needs to be escaped to avoid formatting in
4+
fnmatch comment.
5+
patched by @dalton. https://github.com/ruby/ruby/pull/91
6+
17
Fri Feb 10 03:41:31 2012 Aaron Patterson <[email protected]>
28

39
* ext/psych/parser.c: removed external encoding setter, allow parser

dir.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1907,7 +1907,7 @@ dir_entries(int argc, VALUE *argv, VALUE io)
19071907
* match all files beginning with
19081908
* <code>c</code>; <code>*c</code> will match
19091909
* all files ending with <code>c</code>; and
1910-
* <code>*c*</code> will match all files that
1910+
* <code>\*c*</code> will match all files that
19111911
* have <code>c</code> in them (including at
19121912
* the beginning or end). Equivalent to
19131913
* <code>/ .* /x</code> in regexp.

0 commit comments

Comments
 (0)