summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorknu <knu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-02-20 06:53:16 +0000
committerknu <knu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-02-20 06:53:16 +0000
commite745f9b2702613441435594791cea8ddf0734774 (patch)
treebf175b005eadbd128b2ea7f93b37b5ee647dad20 /lib
parentbfdd14d50533d84af67008a6788d7093c844850a (diff)
Merge trivial changes to reduce diffs from ruby_1_8.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8_6@11798 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib')
-rw-r--r--lib/optparse.rb12
1 files changed, 4 insertions, 8 deletions
diff --git a/lib/optparse.rb b/lib/optparse.rb
index 2c034043e0..2c91cd004f 100644
--- a/lib/optparse.rb
+++ b/lib/optparse.rb
@@ -398,8 +398,7 @@ class OptionParser
self
end
- # :nodoc:
- def add_banner(to)
+ def add_banner(to) # :nodoc:
unless @short or @long
s = desc.join
to << " [" + s + "]..." unless s.empty?
@@ -407,8 +406,7 @@ class OptionParser
to
end
- # :nodoc:
- def match_nonswitch?(str)
+ def match_nonswitch?(str) # :nodoc:
@pattern =~ str unless @short or @long
end
@@ -643,8 +641,7 @@ class OptionParser
end
end
- # :nodoc:
- def add_banner(to)
+ def add_banner(to) # :nodoc:
list.each do |opt|
if opt.respond_to?(:add_banner)
opt.add_banner(to)
@@ -1244,8 +1241,7 @@ class OptionParser
parse_in_order(argv, &nonopt)
end
- # :nodoc:
- def parse_in_order(argv = default_argv, setter = nil, &nonopt)
+ def parse_in_order(argv = default_argv, setter = nil, &nonopt) # :nodoc:
opt, arg, sw, val, rest = nil
nonopt ||= proc {|arg| throw :terminate, arg}
argv.unshift(arg) if arg = catch(:terminate) {