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

ruby-changes:8602

From: matz <ko1@a...>
Date: Sat, 8 Nov 2008 00:13:30 +0900 (JST)
Subject: [ruby-changes:8602] Ruby:r20136 (ruby_1_8): * lib/irb.rb (IRB::Irb#eval_input): remove extra @context.prompt_i.

matz	2008-11-08 00:10:19 +0900 (Sat, 08 Nov 2008)

  New Revision: 20136

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

  Log:
    * lib/irb.rb (IRB::Irb#eval_input): remove extra  @context.prompt_i.
      [ruby-core:19718]

  Modified files:
    branches/ruby_1_8/ChangeLog
    branches/ruby_1_8/lib/irb.rb

Index: ruby_1_8/ChangeLog
===================================================================
--- ruby_1_8/ChangeLog	(revision 20135)
+++ ruby_1_8/ChangeLog	(revision 20136)
@@ -3,6 +3,11 @@
 	* hash.c (rb_hash_key, env_key): Hash#index is renamed to
 	  Hash#key, and ENV.index to ENV.key. [ruby-dev:37028]
 
+Fri Nov  7 12:26:00 2008  Yukihiro Matsumoto  <matz@r...>
+
+	* lib/irb.rb (IRB::Irb#eval_input): remove extra  @context.prompt_i.
+	  [ruby-core:19718]
+
 Fri Nov  7 02:08:04 2008  Shugo Maeda  <shugo@r...>
 
 	* lib/rexml/entity.rb (unnormalized): do not call
Index: ruby_1_8/lib/irb.rb
===================================================================
--- ruby_1_8/lib/irb.rb	(revision 20135)
+++ ruby_1_8/lib/irb.rb	(revision 20136)
@@ -108,7 +108,7 @@
 	  f = @context.prompt_c
 	elsif indent > 0
 	  f = @context.prompt_n
-	else @context.prompt_i
+	else
 	  f = @context.prompt_i
 	end
 	f = "" unless f

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

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