1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* lib/irb.rb (IRB::Irb#eval_input): remove extra @context.prompt_i.

[ruby-core:19718]

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@20136 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
matz 2008-11-07 15:10:19 +00:00
parent eda5ffe524
commit 841f07e4e4
2 changed files with 6 additions and 1 deletions

View file

@ -3,6 +3,11 @@ Fri Nov 7 18:29:09 2008 Akinori MUSHA <knu@iDaemons.org>
* hash.c (rb_hash_key, env_key): Hash#index is renamed to * hash.c (rb_hash_key, env_key): Hash#index is renamed to
Hash#key, and ENV.index to ENV.key. [ruby-dev:37028] Hash#key, and ENV.index to ENV.key. [ruby-dev:37028]
Fri Nov 7 12:26:00 2008 Yukihiro Matsumoto <matz@ruby-lang.org>
* 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@ruby-lang.org> Fri Nov 7 02:08:04 2008 Shugo Maeda <shugo@ruby-lang.org>
* lib/rexml/entity.rb (unnormalized): do not call * lib/rexml/entity.rb (unnormalized): do not call

View file

@ -108,7 +108,7 @@ module IRB
f = @context.prompt_c f = @context.prompt_c
elsif indent > 0 elsif indent > 0
f = @context.prompt_n f = @context.prompt_n
else @context.prompt_i else
f = @context.prompt_i f = @context.prompt_i
end end
f = "" unless f f = "" unless f