From 6ac1d39acec4ccb01cca219e30d2ba4b3547a9e3 Mon Sep 17 00:00:00 2001 From: drbrain Date: Mon, 20 Aug 2012 20:26:06 +0000 Subject: [PATCH] * re.c (rb_reg_initialize_m): Forgot to update output for or'd-options example. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@36742 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 5 +++++ re.c | 8 ++++---- 2 files changed, 9 insertions(+), 4 deletions(-) diff --git a/ChangeLog b/ChangeLog index 5bf7bbe341..adbe9e6593 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Tue Aug 21 05:25:41 2012 Eric Hodel + + * re.c (rb_reg_initialize_m): Forgot to update output for or'd-options + example. + Tue Aug 21 05:18:03 2012 Eric Hodel * re.c (rb_reg_initialize_m): Update example to show that regexp diff --git a/re.c b/re.c index e81677756b..f512fa4a94 100644 --- a/re.c +++ b/re.c @@ -2888,10 +2888,10 @@ rb_reg_match_m(int argc, VALUE *argv, VALUE re) * * When the +lang+ parameter is `n' or `N' sets the regexp no encoding. * - * r1 = Regexp.new('^a-z+:\\s+\w+') #=> /^a-z+:\s+\w+/ - * r2 = Regexp.new('cat', true) #=> /cat/i - * r3 = Regexp.new(r2) #=> /cat/i - * r4 = Regexp.new('dog', Regexp::EXTENDED | Regexp::IGNORECASE) #=> /dog/x + * r1 = Regexp.new('^a-z+:\\s+\w+') #=> /^a-z+:\s+\w+/ + * r2 = Regexp.new('cat', true) #=> /cat/i + * r3 = Regexp.new(r2) #=> /cat/i + * r4 = Regexp.new('dog', Regexp::EXTENDED | Regexp::IGNORECASE) #=> /dog/ix */ static VALUE