* tool/redmine-backporter.rb: show selected ticket number at prompt.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@49820 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
usa 2015-03-03 07:55:57 +00:00
parent b5f8aec516
commit d57a8fa590
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
Tue Mar 3 16:55:23 2015 NAKAMURA Usaku <usa@ruby-lang.org>
* tool/redmine-backporter.rb: show selected ticket number at prompt.
Tue Mar 3 14:47:30 2015 Kazuki Tanaka <gogotanaka@ruby-lang.org>
* math.c (num2dbl_with_to_f): direct casting from Rational to double.

View File

@ -319,7 +319,7 @@ puts "Backporter #{VERSION}".color(bold: true) + " for #{TARGET_VERSION}"
@changesets = nil
while true
begin
l = Readline.readline '> '
l = Readline.readline "#{'#' + @issue.to_s if @issue}> "
rescue Interrupt
break
end