diff options
| author | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-11-07 03:27:57 +0000 |
|---|---|---|
| committer | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-11-07 03:27:57 +0000 |
| commit | ba5bb194be68b252b154d5dd0d787e9f68edd6e6 (patch) | |
| tree | f37ef0b98c470419279ca6928f2331b9aa7aef29 | |
| parent | 29070590f699f2e485ad92c22946eafe18d8e134 (diff) | |
| download | ruby-ba5bb194be68b252b154d5dd0d787e9f68edd6e6.tar.gz ruby-ba5bb194be68b252b154d5dd0d787e9f68edd6e6.tar.xz ruby-ba5bb194be68b252b154d5dd0d787e9f68edd6e6.zip | |
* lib/irb.rb (IRB::Irb#eval_input): remove extra @context.prompt_i.
[ruby-core:19718]
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@20129 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
| -rw-r--r-- | ChangeLog | 5 | ||||
| -rw-r--r-- | lib/irb.rb | 2 |
2 files changed, 6 insertions, 1 deletions
@@ -1,3 +1,8 @@ +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 11:55:30 2008 NARUSE, Yui <naruse@ruby-lang.org> * nkf.c: update to r1.188. fixes for 16bit environment. diff --git a/lib/irb.rb b/lib/irb.rb index 7fe3d7dc5..f5e662ac5 100644 --- a/lib/irb.rb +++ b/lib/irb.rb @@ -107,7 +107,7 @@ module IRB f = @context.prompt_c elsif indent > 0 f = @context.prompt_n - else @context.prompt_i + else f = @context.prompt_i end f = "" unless f |
