diff options
| author | knu <knu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-02-20 06:53:16 +0000 |
|---|---|---|
| committer | knu <knu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-02-20 06:53:16 +0000 |
| commit | b5111b23cf3f775e0ecd047b2392639c661e25a3 (patch) | |
| tree | bf175b005eadbd128b2ea7f93b37b5ee647dad20 /lib | |
| parent | ecfb8ec06edd2e00b29a4262f4d4dae2129b78be (diff) | |
| download | ruby-b5111b23cf3f775e0ecd047b2392639c661e25a3.tar.gz ruby-b5111b23cf3f775e0ecd047b2392639c661e25a3.tar.xz ruby-b5111b23cf3f775e0ecd047b2392639c661e25a3.zip | |
Merge trivial changes to reduce diffs from ruby_1_8.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8_6@11798 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/optparse.rb | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/lib/optparse.rb b/lib/optparse.rb index 2c034043e..2c91cd004 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) { |
