[前][次][番号順一覧][スレッド一覧]

ruby-changes:14128

From: yugui <ko1@a...>
Date: Fri, 27 Nov 2009 11:54:38 +0900 (JST)
Subject: [ruby-changes:14128] Ruby:r25942 (ruby_1_9_1): merges r25001 from trunk into ruby_1_9_1.

yugui	2009-11-27 11:54:20 +0900 (Fri, 27 Nov 2009)

  New Revision: 25942

  http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=25942

  Log:
    merges r25001 from trunk into ruby_1_9_1.
    --
    * marshal.c (r_object0): entry regexp object before its encoding
      name.  [ruby-core:25625]

  Modified files:
    branches/ruby_1_9_1/ChangeLog
    branches/ruby_1_9_1/marshal.c
    branches/ruby_1_9_1/test/ruby/test_marshal.rb
    branches/ruby_1_9_1/version.h

Index: ruby_1_9_1/ChangeLog
===================================================================
--- ruby_1_9_1/ChangeLog	(revision 25941)
+++ ruby_1_9_1/ChangeLog	(revision 25942)
@@ -1,3 +1,8 @@
+Fri Sep 18 23:51:17 2009  Nobuyoshi Nakada  <nobu@r...>
+
+	* marshal.c (r_object0): entry regexp object before its encoding
+	  name.  [ruby-core:25625]
+
 Sun Aug 16 00:30:33 2009  NARUSE, Yui  <naruse@r...>
 
 	* include/ruby/oniguruma.h
Index: ruby_1_9_1/version.h
===================================================================
--- ruby_1_9_1/version.h	(revision 25941)
+++ ruby_1_9_1/version.h	(revision 25942)
@@ -1,5 +1,5 @@
 #define RUBY_VERSION "1.9.1"
-#define RUBY_PATCHLEVEL 343
+#define RUBY_PATCHLEVEL 344
 #define RUBY_VERSION_MAJOR 1
 #define RUBY_VERSION_MINOR 9
 #define RUBY_VERSION_TEENY 1
Index: ruby_1_9_1/marshal.c
===================================================================
--- ruby_1_9_1/marshal.c	(revision 25941)
+++ ruby_1_9_1/marshal.c	(revision 25942)
@@ -1429,7 +1429,10 @@
 	{
 	    volatile VALUE str = r_bytes(arg);
 	    int options = r_byte(arg);
-	    v = rb_reg_new("", 0, options);
+	    VALUE args[2];
+	    args[0] = str;
+	    args[1] = INT2FIX(options);
+	    v = r_entry(rb_obj_alloc(rb_cRegexp), arg);
 	    if (ivp) {
 		r_ivar(v, arg);
 		*ivp = Qfalse;
@@ -1440,9 +1443,8 @@
 #define f_gsub_bang(x,y,z) rb_funcall(x, rb_intern("gsub!"), 2, y, z)
 		f_gsub_bang(str, rb_reg_new("\\\\u", 3, 0), rb_usascii_str_new_cstr("u"));
 	    }
-	    str = r_entry(rb_reg_new_str(str, options), arg);
-	    rb_copy_generic_ivar(str, v);
-	    v = r_leave(str, arg);
+	    rb_obj_call_init(v, 2, args);
+	    v = r_leave(v, arg);
 	}
 	break;
 
Index: ruby_1_9_1/test/ruby/test_marshal.rb
===================================================================
--- ruby_1_9_1/test/ruby/test_marshal.rb	(revision 25941)
+++ ruby_1_9_1/test/ruby/test_marshal.rb	(revision 25942)
@@ -204,4 +204,12 @@
     a = ClassUTF8.new
     assert_instance_of(ClassUTF8, Marshal.load(Marshal.dump(a)), '[ruby-core:24790]')
   end
+
+  def test_regexp
+    bug2109 = '[ruby-core:25625]'
+    a = "\x82\xa0".force_encoding(Encoding::Windows_31J)
+    b = "\x82\xa2".force_encoding(Encoding::Windows_31J)
+    c = [/#{a}/, /#{b}/]
+    assert_equal(c, Marshal.load(Marshal.dump(c)))
+  end
 end

--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]