* re.c (Init_Regexp): remove obsolete const alias: MatchingData.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@13618 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
150a8b4fe0
commit
9a2a45cd69
@ -1,10 +1,12 @@
|
|||||||
Thu Oct 4 16:52:20 2007 Yukihiro Matsumoto <matz@ruby-lang.org>
|
Thu Oct 4 16:54:00 2007 Yukihiro Matsumoto <matz@ruby-lang.org>
|
||||||
|
|
||||||
* re.c (kcode_setter): Perl-ish global variable `$=' no longer
|
* re.c (kcode_setter): Perl-ish global variable `$=' no longer
|
||||||
effective.
|
effective.
|
||||||
|
|
||||||
* io.c (Init_IO): remove obsolete variables: $defout, $deferr.
|
* io.c (Init_IO): remove obsolete variables: $defout, $deferr.
|
||||||
|
|
||||||
|
* re.c (Init_Regexp): remove obsolete const alias: MatchingData.
|
||||||
|
|
||||||
Thu Oct 4 16:28:33 2007 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
Thu Oct 4 16:28:33 2007 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||||
|
|
||||||
* encoding.c (rb_obj_encoding): returns encoding of the given object.
|
* encoding.c (rb_obj_encoding): returns encoding of the given object.
|
||||||
|
1
re.c
1
re.c
@ -2442,7 +2442,6 @@ Init_Regexp(void)
|
|||||||
rb_global_variable(®_cache);
|
rb_global_variable(®_cache);
|
||||||
|
|
||||||
rb_cMatch = rb_define_class("MatchData", rb_cObject);
|
rb_cMatch = rb_define_class("MatchData", rb_cObject);
|
||||||
rb_define_global_const("MatchingData", rb_cMatch);
|
|
||||||
rb_define_alloc_func(rb_cMatch, match_alloc);
|
rb_define_alloc_func(rb_cMatch, match_alloc);
|
||||||
rb_undef_method(CLASS_OF(rb_cMatch), "new");
|
rb_undef_method(CLASS_OF(rb_cMatch), "new");
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user