diff options
| author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2009-04-26 06:13:11 +0000 |
|---|---|---|
| committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2009-04-26 06:13:11 +0000 |
| commit | 947a75c84059df32c42693f1d1f72b68617641a8 (patch) | |
| tree | e638c47d23cc114f975d34fc3300098d8aac1adf /lib | |
| parent | f8ed1be332f125897ed00ce7be770c512e600551 (diff) | |
| download | ruby-947a75c84059df32c42693f1d1f72b68617641a8.tar.gz ruby-947a75c84059df32c42693f1d1f72b68617641a8.tar.xz ruby-947a75c84059df32c42693f1d1f72b68617641a8.zip | |
* lib/optparse.rb (OptionParser#parse_in_order): do not make an
option from non-option argument. [ruby-dev:38333]
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@23286 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/optparse.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/optparse.rb b/lib/optparse.rb index ea1eaae52..e701363e8 100644 --- a/lib/optparse.rb +++ b/lib/optparse.rb @@ -1304,7 +1304,7 @@ class OptionParser begin opt, cb, val = sw.parse(val, argv) {|*exc| raise(*exc) if eq} raise InvalidOption, arg if has_arg and !eq and arg == "-#{opt}" - argv.unshift(opt) if opt and (opt = opt.sub(/\A-*/, '-')) != '-' + argv.unshift(opt) if opt and (!rest or (opt = opt.sub(/\A-*/, '-')) != '-') val = cb.call(val) if cb setter.call(sw.switch_name, val) if setter rescue ParseError |
