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

* lib/optparse.rb (OptionParser#to_a): should split by end-of-line,

and MUST TEST IT, MUST RUN THE TEST, MUST VERIFY BEFORE BACKPORT.
  [ruby-dev:45568][Bug #6348]

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@35462 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
naruse 2012-04-24 12:17:05 +00:00
parent 276d82a7c8
commit dd5ae05b05
2 changed files with 7 additions and 1 deletions

View file

@ -1,3 +1,9 @@
Tue Apr 24 21:11:31 2012 NARUSE, Yui <naruse@ruby-lang.org>
* lib/optparse.rb (OptionParser#to_a): should split by end-of-line,
and MUST TEST IT, MUST RUN THE TEST, MUST VERIFY BEFORE BACKPORT.
[ruby-dev:45568][Bug #6348]
Tue Apr 24 19:59:31 2012 NAKAMURA Usaku <usa@ruby-lang.org>
* enc/euc_jp.c: added EUC-JP-2004 and its alias EUC-JISX0213.

View file

@ -1071,7 +1071,7 @@ XXX
#
# Returns option summary list.
#
def to_a; summarize("#{banner}".split(/$/)) end
def to_a; summarize("#{banner}".split) end
#
# Checks if an argument is given twice, in which case an ArgumentError is