mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* regex.c (re_compile_pattern): \s should include \v too.
a patch from Masahiro Tomita. [ruby-dev:38070] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@22585 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
b080500cbf
commit
168aacde2b
2 changed files with 6 additions and 0 deletions
|
@ -1,3 +1,8 @@
|
|||
Tue Feb 24 07:09:50 2009 Yukihiro Matsumoto <matz@ruby-lang.org>
|
||||
|
||||
* regex.c (re_compile_pattern): \s should include \v too.
|
||||
a patch from Masahiro Tomita. [ruby-dev:38070]
|
||||
|
||||
Mon Feb 23 14:47:04 2009 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||
|
||||
* lib/fileutils.rb (mv): added description for the case of
|
||||
|
|
1
regex.c
1
regex.c
|
@ -2244,6 +2244,7 @@ re_compile_pattern(pattern, size, bufp)
|
|||
SET_LIST_BIT('\n');
|
||||
SET_LIST_BIT('\r');
|
||||
SET_LIST_BIT('\f');
|
||||
SET_LIST_BIT('\v');
|
||||
}
|
||||
else {
|
||||
char cc;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue