From 64318f2a71ffd037aef70b3363654c6be8113263 Mon Sep 17 00:00:00 2001 From: usa Date: Tue, 20 Jan 2015 03:30:30 +0000 Subject: * tool/redmine-backporter.rb (readline): fallback to normal gets on Windows because IO.console.getch is not always do as expected. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@49345 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- tool/redmine-backporter.rb | 1 + 1 file changed, 1 insertion(+) (limited to 'tool') diff --git a/tool/redmine-backporter.rb b/tool/redmine-backporter.rb index bda4abcc56..c2dc74237a 100755 --- a/tool/redmine-backporter.rb +++ b/tool/redmine-backporter.rb @@ -201,6 +201,7 @@ def readline(prompt = '') cls = "\r" + (" " * lx) + "\r" + prompt console.print prompt console.flush + return gets.chomp if /mswin|mingw/ =~ RUBY_PLATFORM line = '' while 1 case c = console.getch -- cgit v1.2.3