diff options
author | yugui <yugui@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2009-01-13 03:37:15 +0000 |
---|---|---|
committer | yugui <yugui@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2009-01-13 03:37:15 +0000 |
commit | a5fdc9de347bc18243266c1c5c771bb4655dfc78 (patch) | |
tree | 973bdd9ccf16b3a59b9b76070b0e925d84f32f84 /lib/irb | |
parent | fc8835a5bb150e083a3175641bd9e29070ddd39e (diff) | |
download | ruby-a5fdc9de347bc18243266c1c5c771bb4655dfc78.tar.gz |
* lib/irb/input-method.rb: IRB did not prompt for MSwin32.
[ruby-dev:37686].
Patch by arton <artonx AT yahoo.co.jp>.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@21485 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/irb')
-rw-r--r-- | lib/irb/input-method.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/irb/input-method.rb b/lib/irb/input-method.rb index 407012aa86..0b22d9ca74 100644 --- a/lib/irb/input-method.rb +++ b/lib/irb/input-method.rb @@ -45,7 +45,7 @@ module IRB @line_no = 0 @line = [] @stdin = IO.open(STDIN.to_i, :external_encoding => IRB.conf[:LC_MESSAGES].encoding, :internal_encoding => "-") - @stdout = IO.open(STDOUT.to_i, :external_encoding => IRB.conf[:LC_MESSAGES].encoding, :internal_encoding => "-") + @stdout = IO.open(STDOUT.to_i, 'w', :external_encoding => IRB.conf[:LC_MESSAGES].encoding, :internal_encoding => "-") end def gets @@ -106,7 +106,7 @@ module IRB @eof = false @stdin = IO.open(STDIN.to_i, :external_encoding => IRB.conf[:LC_MESSAGES].encoding, :internal_encoding => "-") - @stdout = IO.open(STDOUT.to_i, :external_encoding => IRB.conf[:LC_MESSAGES].encoding, :internal_encoding => "-") + @stdout = IO.open(STDOUT.to_i, 'w', :external_encoding => IRB.conf[:LC_MESSAGES].encoding, :internal_encoding => "-") end def gets |