summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--parse.y2
-rw-r--r--test/ruby/test_regexp.rb12
-rw-r--r--version.h2
4 files changed, 16 insertions, 5 deletions
diff --git a/ChangeLog b/ChangeLog
index fdfde97e22..e605a5537e 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Sun Apr 7 03:01:49 2013 Nobuyoshi Nakada <nobu@ruby-lang.org>
+
+ * parse.y (simple_re_meta): escape all closing characters, not only
+ round parenthesis. [ruby-core:53578] [Bug #8133]
+
Sun Apr 7 02:54:40 2013 Narihiro Nakamura <authornari@gmail.com>
* gc.c: Improve accuracy of objspace_live_num() and
diff --git a/parse.y b/parse.y
index 707007bc0f..39e6747e8a 100644
--- a/parse.y
+++ b/parse.y
@@ -5974,7 +5974,7 @@ simple_re_meta(int c)
switch (c) {
case '$': case '*': case '+': case '.':
case '?': case '^': case '|':
- case ')':
+ case ')': case ']': case '}': case '>':
return TRUE;
default:
return FALSE;
diff --git a/test/ruby/test_regexp.rb b/test/ruby/test_regexp.rb
index 308b30ae9c..46fd4531a0 100644
--- a/test/ruby/test_regexp.rb
+++ b/test/ruby/test_regexp.rb
@@ -180,9 +180,15 @@ class TestRegexp < Test::Unit::TestCase
end
def test_source_escaped_paren
- bug7610 = '[ruby-core:51088]'
- s = '\(a\)'
- assert_equal(/#{s}/, eval("%r(#{s})"), bug7610)
+ bug7610 = '[ruby-core:51088] [Bug #7610]'
+ bug8133 = '[ruby-core:53578] [Bug #8133]'
+ [
+ ["(", ")", bug7610], ["[", "]", bug8133],
+ ["{", "}", bug8133], ["<", ">", bug8133],
+ ].each do |lparen, rparen, bug|
+ s = "\\#{lparen}a\\#{rparen}"
+ assert_equal(/#{s}/, eval("%r#{lparen}#{s}#{rparen}"), bug)
+ end
end
def test_source_unescaped
diff --git a/version.h b/version.h
index 4117f34802..6dec968eca 100644
--- a/version.h
+++ b/version.h
@@ -1,6 +1,6 @@
#define RUBY_VERSION "2.0.0"
#define RUBY_RELEASE_DATE "2013-04-07"
-#define RUBY_PATCHLEVEL 108
+#define RUBY_PATCHLEVEL 109
#define RUBY_RELEASE_YEAR 2013
#define RUBY_RELEASE_MONTH 4