From 506cdbf64a7883b769725c20ced87c38d254f5b0 Mon Sep 17 00:00:00 2001 From: matz Date: Thu, 4 Oct 2007 08:34:06 +0000 Subject: [PATCH] * re.c (kcode_setter): restore erroneously removed setter. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@13621 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 4 +++- re.c | 3 ++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 944ed02dad..dfb82b2f24 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,4 +1,4 @@ -Thu Oct 4 17:08:08 2007 Yukihiro Matsumoto +Thu Oct 4 17:33:18 2007 Yukihiro Matsumoto * re.c (kcode_setter): Perl-ish global variable `$=' no longer effective. @@ -15,6 +15,8 @@ Thu Oct 4 17:08:08 2007 Yukihiro Matsumoto * string.c (rb_str_cmp_m): update RDoc document. + * re.c (kcode_setter): restore erroneously removed setter. + Thu Oct 4 16:28:33 2007 Nobuyoshi Nakada * encoding.c (rb_obj_encoding): returns encoding of the given object. diff --git a/re.c b/re.c index f2e755e01a..053526de09 100644 --- a/re.c +++ b/re.c @@ -2311,7 +2311,8 @@ rb_set_kcode(const char *code) static void kcode_setter(VALUE val) { - rb_warning("$= no longer effective"); + may_need_recompile = 1; + rb_set_kcode(StringValuePtr(val)); } static VALUE