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

ruby-changes:17362

From: yugui <ko1@a...>
Date: Wed, 29 Sep 2010 21:23:46 +0900 (JST)
Subject: [ruby-changes:17362] Ruby:r29367 (ruby_1_9_2): merges r29040 from trunk into ruby_1_9_2.

yugui	2010-09-29 21:22:23 +0900 (Wed, 29 Sep 2010)

  New Revision: 29367

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

  Log:
    merges r29040 from trunk into ruby_1_9_2.
    --
    * vm_insnhelper.c (vm_push_frame): initialize block_iseq.  a patch
      from Peter Weldon at [ruby-core:31757].

  Modified files:
    branches/ruby_1_9_2/ChangeLog
    branches/ruby_1_9_2/version.h
    branches/ruby_1_9_2/vm_insnhelper.c

Index: ruby_1_9_2/ChangeLog
===================================================================
--- ruby_1_9_2/ChangeLog	(revision 29366)
+++ ruby_1_9_2/ChangeLog	(revision 29367)
@@ -1,3 +1,8 @@
+Thu Aug 19 06:03:27 2010  Nobuyoshi Nakada  <nobu@r...>
+
+	* vm_insnhelper.c (vm_push_frame): initialize block_iseq.  a patch
+	  from Peter Weldon at [ruby-core:31757].
+
 Wed Sep 15 02:13:44 2010  Aaron Patterson <aaron@t...>
 
 	* ext/fiddle/closure.c : Don't use FFI closure alloc on OpenBSD.
Index: ruby_1_9_2/version.h
===================================================================
--- ruby_1_9_2/version.h	(revision 29366)
+++ ruby_1_9_2/version.h	(revision 29367)
@@ -1,6 +1,6 @@
 #define RUBY_VERSION "1.9.2"
-#define RUBY_RELEASE_DATE "2010-09-15"
-#define RUBY_PATCHLEVEL 0
+#define RUBY_RELEASE_DATE "2010-08-18"
+#define RUBY_PATCHLEVEL 2
 
 #define RUBY_VERSION_MAJOR 1
 #define RUBY_VERSION_MINOR 9
Index: ruby_1_9_2/vm_insnhelper.c
===================================================================
--- ruby_1_9_2/vm_insnhelper.c	(revision 29366)
+++ ruby_1_9_2/vm_insnhelper.c	(revision 29367)
@@ -58,6 +58,7 @@
     cfp->self = self;
     cfp->lfp = lfp;
     cfp->dfp = sp;
+    cfp->block_iseq = 0;
     cfp->proc = 0;
     cfp->me = 0;
 

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

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