summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--regex.c1
2 files changed, 6 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 9b64543e0a..9d99844d60 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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
diff --git a/regex.c b/regex.c
index 968c5efca2..693bd6331f 100644
--- a/regex.c
+++ b/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;