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

ruby-changes:1944

From: ko1@a...
Date: 13 Sep 2007 13:47:22 +0900
Subject: [ruby-changes:1944] nobu - Ruby:r13435 (trunk): * parse.y (rb_id2str): fixed typo.

nobu	2007-09-13 13:47:10 +0900 (Thu, 13 Sep 2007)

  New Revision: 13435

  Modified files:
    trunk/ChangeLog
    trunk/parse.y
    trunk/version.h

  Log:
    * parse.y (rb_id2str): fixed typo.


  http://svn.ruby-lang.org/cgi-bin/viewvc.cgi/trunk/version.h?r1=13435&r2=13434
  http://svn.ruby-lang.org/cgi-bin/viewvc.cgi/trunk/parse.y?r1=13435&r2=13434
  http://svn.ruby-lang.org/cgi-bin/viewvc.cgi/trunk/ChangeLog?r1=13435&r2=13434

Index: ChangeLog
===================================================================
--- ChangeLog	(revision 13434)
+++ ChangeLog	(revision 13435)
@@ -1,3 +1,7 @@
+Thu Sep 13 13:47:08 2007  Nobuyoshi Nakada  <nobu@r...>
+
+	* parse.y (rb_id2str): fixed typo.
+
 Wed Sep 12 23:12:22 2007  Yukihiro Matsumoto  <matz@r...>
 
 	* ruby.c (proc_options): -W should be allowed in RUBYOPT
Index: parse.y
===================================================================
--- parse.y	(revision 13434)
+++ parse.y	(revision 13435)
@@ -8529,7 +8529,6 @@
 VALUE
 rb_id2str(ID id)
 {
-    const char *name;
     st_data_t data;
 
     if (id < tLAST_TOKEN) {
@@ -8560,7 +8559,7 @@
 	    id2 = (id & ~ID_SCOPE_MASK) | ID_CONST;
 	}
 	str = rb_str_dup(str);
-	rb_str_cat(buf, "=", 1);
+	rb_str_cat(str, "=", 1);
 	rb_intern_str(str);
 	if (st_lookup(global_symbols.id_str, id, &data))
 	    return (VALUE)data;
Index: version.h
===================================================================
--- version.h	(revision 13434)
+++ version.h	(revision 13435)
@@ -1,7 +1,7 @@
 #define RUBY_VERSION "1.9.0"
-#define RUBY_RELEASE_DATE "2007-09-12"
+#define RUBY_RELEASE_DATE "2007-09-13"
 #define RUBY_VERSION_CODE 190
-#define RUBY_RELEASE_CODE 20070912
+#define RUBY_RELEASE_CODE 20070913
 #define RUBY_PATCHLEVEL 0
 
 #define RUBY_VERSION_MAJOR 1
@@ -9,7 +9,7 @@
 #define RUBY_VERSION_TEENY 0
 #define RUBY_RELEASE_YEAR 2007
 #define RUBY_RELEASE_MONTH 9
-#define RUBY_RELEASE_DAY 12
+#define RUBY_RELEASE_DAY 13
 
 #ifdef RUBY_EXTERN
 RUBY_EXTERN const char ruby_version[];

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

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