diff --git a/ChangeLog b/ChangeLog index ca156bb39b..fa5c991b38 100644 --- a/ChangeLog +++ b/ChangeLog @@ -51,6 +51,11 @@ Thu Oct 16 14:30:30 2008 Nobuyoshi Nakada * instruby.rb (lib): installs all files other than README etc. +Thu Oct 16 09:48:03 2008 Yukihiro Matsumoto + + * re.c (rb_reg_initialize_m): changed the message to clarify the + third option argument is now ignored. [ruby-dev:36753] + Thu Oct 16 08:14:39 2008 Yukihiro Matsumoto * ruby.c (proc_options): no warning when default_external already diff --git a/re.c b/re.c index 03d9dc3527..48a12ee3bc 100644 --- a/re.c +++ b/re.c @@ -2798,7 +2798,7 @@ rb_reg_initialize_m(int argc, VALUE *argv, VALUE self) flags |= ARG_ENCODING_FIXED; } else { - rb_warning("encoding option is obsolete - %s", kcode); + rb_warn("encoding option is ignored - %s", kcode); } } str = argv[0];