diff options
author | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-01-07 10:12:45 +0000 |
---|---|---|
committer | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-01-07 10:12:45 +0000 |
commit | f2707db2dc05fb726f044e6dd0f9c11bef4d20d0 (patch) | |
tree | fd135ffadabe125de1f54070aaa76dbc5948071d | |
parent | 4d6c03475207b12bb64f3ce30169531d78abba11 (diff) |
* string.c (Init_String): sym_match arity spec was wrong. a patch
from Hiroyuki Iwatsuki <don at na.rim.or.jp> in [ruby-dev:32957].
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@14934 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | bootstraptest/test_knownbug.rb | 2 | ||||
-rw-r--r-- | string.c | 2 |
3 files changed, 7 insertions, 2 deletions
@@ -1,3 +1,8 @@ +Mon Jan 7 19:11:30 2008 Yukihiro Matsumoto <[email protected]> + + * string.c (Init_String): sym_match arity spec was wrong. a patch + from Hiroyuki Iwatsuki <don at na.rim.or.jp> in [ruby-dev:32957]. + Mon Jan 7 18:10:33 2008 Tanaka Akira <[email protected]> * string.c (str_gsub): move rb_enc_get(str) to out of loop. diff --git a/bootstraptest/test_knownbug.rb b/bootstraptest/test_knownbug.rb index 9f770a786b..56ca4d40e3 100644 --- a/bootstraptest/test_knownbug.rb +++ b/bootstraptest/test_knownbug.rb @@ -83,7 +83,7 @@ assert_equal 'ok', %q{ end end - M::A.eval_str(<<END) + M::A.eval_str(<<-END) workflow_rule do |r| r.at 1 end @@ -5975,7 +5975,7 @@ Init_String(void) rb_define_method(rb_cSymbol, "length", sym_length, 0); rb_define_method(rb_cSymbol, "size", sym_length, 0); rb_define_method(rb_cSymbol, "empty?", sym_empty, 0); - rb_define_method(rb_cSymbol, "match", sym_match, -1); + rb_define_method(rb_cSymbol, "match", sym_match, 1); rb_define_method(rb_cSymbol, "upcase", sym_upcase, 0); rb_define_method(rb_cSymbol, "downcase", sym_downcase, 0); |