mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* lib/optparse.rb (OptionParser::List::summarize): use each_line if
defined rather than each. [ruby-Patches-14096] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@13483 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
2f4951f01e
commit
5bc87779fd
2 changed files with 8 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
|||
Sat Sep 22 06:02:11 2007 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||
|
||||
* lib/optparse.rb (OptionParser::List::summarize): use each_line if
|
||||
defined rather than each. [ruby-Patches-14096]
|
||||
|
||||
Sat Sep 22 05:19:49 2007 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||
|
||||
* ext/stringio/stringio.c (strio_init): separate from strio_initialize
|
||||
|
|
|
@ -632,8 +632,10 @@ class OptionParser
|
|||
list.each do |opt|
|
||||
if opt.respond_to?(:summarize) # perhaps OptionParser::Switch
|
||||
opt.summarize(*args, &block)
|
||||
elsif !opt or opt.empty?
|
||||
elsif !opt
|
||||
yield("")
|
||||
elsif opt.respond_to?(:each_line)
|
||||
opt.each_line(&block)
|
||||
else
|
||||
opt.each(&block)
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue