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

ruby-changes:16015

From: nobu <ko1@a...>
Date: Sun, 23 May 2010 17:15:43 +0900 (JST)
Subject: [ruby-changes:16015] Ruby:r27964 (ruby_1_9_2): * vm.c (vm_backtrace_each), vm_eval.c (rb_catch_obj): removed

nobu	2010-05-23 17:15:35 +0900 (Sun, 23 May 2010)

  New Revision: 27964

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

  Log:
    * vm.c (vm_backtrace_each), vm_eval.c (rb_catch_obj): removed
      unused variables.

  Modified files:
    branches/ruby_1_9_2/version.h
    branches/ruby_1_9_2/vm.c
    branches/ruby_1_9_2/vm_eval.c

Index: ruby_1_9_2/vm_eval.c
===================================================================
--- ruby_1_9_2/vm_eval.c	(revision 27963)
+++ ruby_1_9_2/vm_eval.c	(revision 27964)
@@ -1566,7 +1566,7 @@
 static VALUE
 rb_f_caller(int argc, VALUE *argv)
 {
-    VALUE level, ary;
+    VALUE level;
     int lev;
 
     rb_scan_args(argc, argv, "01", &level);
Index: ruby_1_9_2/vm.c
===================================================================
--- ruby_1_9_2/vm.c	(revision 27963)
+++ ruby_1_9_2/vm.c	(revision 27964)
@@ -710,7 +710,7 @@
 {
     const rb_control_frame_t *limit_cfp = th->cfp;
     const rb_control_frame_t *cfp = (void *)(th->stack + th->stack_size);
-    VALUE file = Qnil, *aryp = arg;
+    VALUE file = Qnil;
     int line_no = 0;
 
     cfp -= 2;
Index: ruby_1_9_2/version.h
===================================================================
--- ruby_1_9_2/version.h	(revision 27963)
+++ ruby_1_9_2/version.h	(revision 27964)
@@ -1,5 +1,5 @@
 #define RUBY_VERSION "1.9.2"
-#define RUBY_RELEASE_DATE "2010-05-22"
+#define RUBY_RELEASE_DATE "2010-05-23"
 #define RUBY_PATCHLEVEL -1
 
 #define RUBY_VERSION_MAJOR 1
@@ -7,7 +7,7 @@
 #define RUBY_VERSION_TEENY 1
 #define RUBY_RELEASE_YEAR 2010
 #define RUBY_RELEASE_MONTH 5
-#define RUBY_RELEASE_DAY 22
+#define RUBY_RELEASE_DAY 23
 
 #include "ruby/version.h"
 

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

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