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

ruby-changes:14136

From: yugui <ko1@a...>
Date: Fri, 27 Nov 2009 11:55:41 +0900 (JST)
Subject: [ruby-changes:14136] Ruby:r25950 (ruby_1_9_1): merges r25095 from trunk into ruby_1_9_1.

yugui	2009-11-27 11:55:25 +0900 (Fri, 27 Nov 2009)

  New Revision: 25950

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

  Log:
    merges r25095 from trunk into ruby_1_9_1.
    --
    * iseq.c (compile_string): rename to parse_string(), because
      this function only parse String to NODE.

  Modified files:
    branches/ruby_1_9_1/ChangeLog
    branches/ruby_1_9_1/iseq.c
    branches/ruby_1_9_1/version.h

Index: ruby_1_9_1/ChangeLog
===================================================================
--- ruby_1_9_1/ChangeLog	(revision 25949)
+++ ruby_1_9_1/ChangeLog	(revision 25950)
@@ -1,3 +1,8 @@
+Sat Sep 26 08:35:12 2009  Koichi Sasada  <ko1@a...>
+
+	* iseq.c (compile_string): rename to parse_string(), because
+	  this function only parse String to NODE.
+
 Thu Sep 24 09:41:42 2009  Marc-Andre Lafortune  <ruby-core@m...>
 
 	* lib/mathn.rb (Bignum#**): Fixed bignum**fixnum that was broken when
Index: ruby_1_9_1/iseq.c
===================================================================
--- ruby_1_9_1/iseq.c	(revision 25949)
+++ ruby_1_9_1/iseq.c	(revision 25950)
@@ -457,7 +457,7 @@
 }
 
 static NODE *
-compile_string(VALUE str, VALUE file, VALUE line)
+parse_string(VALUE str, VALUE file, VALUE line)
 {
     VALUE parser = rb_parser_new();
     NODE *node = rb_parser_compile_string(parser, StringValueCStr(file),
@@ -473,7 +473,7 @@
 rb_iseq_compile_with_option(VALUE src, VALUE file, VALUE line, VALUE opt)
 {
     rb_compile_option_t option;
-    NODE *node = compile_string(StringValue(src), file, line);
+    NODE *node = parse_string(StringValue(src), file, line);
     rb_thread_t *th = GET_THREAD();
     make_compile_option(&option, opt);
 
Index: ruby_1_9_1/version.h
===================================================================
--- ruby_1_9_1/version.h	(revision 25949)
+++ ruby_1_9_1/version.h	(revision 25950)
@@ -1,5 +1,5 @@
 #define RUBY_VERSION "1.9.1"
-#define RUBY_PATCHLEVEL 351
+#define RUBY_PATCHLEVEL 352
 #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/

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