From af9c868eae89487e8083a61837479efad69b5c19 Mon Sep 17 00:00:00 2001 From: akr Date: Sun, 4 Nov 2007 15:03:31 +0000 Subject: [PATCH] * re.c (rb_reg_quote): quote \v as well. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@13818 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 4 ++++ re.c | 6 +++++- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 6cf5e684bd..5e839098d2 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +Mon Nov 5 00:01:33 2007 Tanaka Akira + + * re.c (rb_reg_quote): quote \v as well. + Sun Nov 4 23:51:59 2007 Tanaka Akira * re.c (rb_reg_initialize_m): use StringValuePtr instead of diff --git a/re.c b/re.c index a6b9828a69..573fb2ee3b 100644 --- a/re.c +++ b/re.c @@ -1653,7 +1653,7 @@ rb_reg_quote(VALUE str) case '*': case '.': case '\\': case '?': case '+': case '^': case '$': case ' ': case '#': - case '\t': case '\f': case '\n': case '\r': + case '\t': case '\f': case '\v': case '\n': case '\r': goto meta_found; } } @@ -1705,6 +1705,10 @@ rb_reg_quote(VALUE str) *t++ = '\\'; *t++ = 'f'; continue; + case '\v': + *t++ = '\\'; + *t++ = 'v'; + continue; } *t++ = c; }