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

ruby-changes:12357

From: yugui <ko1@a...>
Date: Sun, 12 Jul 2009 23:46:39 +0900 (JST)
Subject: [ruby-changes:12357] Ruby:r24052 (ruby_1_9_1): merges r23932 from trunk into ruby_1_9_1.

yugui	2009-07-12 23:46:22 +0900 (Sun, 12 Jul 2009)

  New Revision: 24052

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

  Log:
    merges r23932 from trunk into ruby_1_9_1.
    --
    * parse.y (parser_yylex): fixed wrong variable.

  Modified files:
    branches/ruby_1_9_1/ChangeLog
    branches/ruby_1_9_1/parse.y
    branches/ruby_1_9_1/version.h

Index: ruby_1_9_1/ChangeLog
===================================================================
--- ruby_1_9_1/ChangeLog	(revision 24051)
+++ ruby_1_9_1/ChangeLog	(revision 24052)
@@ -1,3 +1,7 @@
+Thu Jul  2 07:53:44 2009  Nobuyoshi Nakada  <nobu@r...>
+
+	* parse.y (parser_yylex): fixed wrong variable.
+
 Tue Jun 30 18:19:07 2009  Yukihiro Matsumoto  <matz@r...>
 
 	* hash.c (rb_hash_hash): documentation fix.  a patch from
Index: ruby_1_9_1/parse.y
===================================================================
--- ruby_1_9_1/parse.y	(revision 24051)
+++ ruby_1_9_1/parse.y	(revision 24052)
@@ -7056,7 +7056,7 @@
 		    }
 		    else {
 			int c0 = nextc();
-			if (c == -1 || !ISDIGIT(c0)) {
+			if (c0 == -1 || !ISDIGIT(c0)) {
 			    pushback(c0);
 			    goto decode_num;
 			}
Index: ruby_1_9_1/version.h
===================================================================
--- ruby_1_9_1/version.h	(revision 24051)
+++ ruby_1_9_1/version.h	(revision 24052)
@@ -1,6 +1,6 @@
 #define RUBY_VERSION "1.9.1"
 #define RUBY_RELEASE_DATE "2009-07-12"
-#define RUBY_PATCHLEVEL 215
+#define RUBY_PATCHLEVEL 216
 #define RUBY_VERSION_MAJOR 1
 #define RUBY_VERSION_MINOR 9
 #define RUBY_VERSION_TEENY 1

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

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