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

ruby-changes:22872

From: nobu <ko1@a...>
Date: Tue, 6 Mar 2012 12:27:35 +0900 (JST)
Subject: [ruby-changes:22872] nobu:r34921 (ruby_1_9_3): merge revision(s) 32747:

nobu	2012-03-06 12:27:16 +0900 (Tue, 06 Mar 2012)

  New Revision: 34921

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

  Log:
    merge revision(s) 32747:
    
    * remove unused variables.

  Modified files:
    branches/ruby_1_9_3/ext/bigdecimal/bigdecimal.c
    branches/ruby_1_9_3/ext/io/console/console.c
    branches/ruby_1_9_3/version.h

Index: ruby_1_9_3/ext/bigdecimal/bigdecimal.c
===================================================================
--- ruby_1_9_3/ext/bigdecimal/bigdecimal.c	(revision 34920)
+++ ruby_1_9_3/ext/bigdecimal/bigdecimal.c	(revision 34921)
@@ -1978,7 +1978,7 @@
 static VALUE
 rmpd_power_by_big_decimal(Real const* x, Real const* exp, ssize_t const n)
 {
-    VALUE log_x, multiplied, y, vn;
+    VALUE log_x, multiplied, y;
 
     if (VpIsZero(exp)) {
 	return ToValue(VpCreateRbObject(n, "1"));
Index: ruby_1_9_3/ext/io/console/console.c
===================================================================
--- ruby_1_9_3/ext/io/console/console.c	(revision 34920)
+++ ruby_1_9_3/ext/io/console/console.c	(revision 34921)
@@ -557,7 +557,7 @@
 	VALUE out;
 	rb_io_t *ofptr;
 #endif
-	int fd, mode;
+	int fd;
 
 #ifdef CONSOLE_DEVICE_FOR_WRITING
 	fd = open(CONSOLE_DEVICE_FOR_WRITING, O_WRONLY);
Index: ruby_1_9_3/version.h
===================================================================
--- ruby_1_9_3/version.h	(revision 34920)
+++ ruby_1_9_3/version.h	(revision 34921)
@@ -1,5 +1,5 @@
 #define RUBY_VERSION "1.9.3"
-#define RUBY_PATCHLEVEL 156
+#define RUBY_PATCHLEVEL 157
 
 #define RUBY_RELEASE_DATE "2012-03-06"
 #define RUBY_RELEASE_YEAR 2012

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

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