summaryrefslogtreecommitdiff
path: root/lib/optparse.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/optparse.rb')
-rw-r--r--lib/optparse.rb10
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/optparse.rb b/lib/optparse.rb
index 305f828e0e..e24d77e4e3 100644
--- a/lib/optparse.rb
+++ b/lib/optparse.rb
@@ -1250,8 +1250,8 @@ class OptionParser
raise $!.set_option(arg, true)
end
begin
- opt, sw, val = sw.parse(rest, argv) {|*exc| raise(*exc)}
- sw.call(val) if sw
+ opt, sw, *val = sw.parse(rest, argv) {|*exc| raise(*exc)}
+ sw.call(*val) if sw
rescue ParseError
raise $!.set_option(arg, rest)
end
@@ -1278,10 +1278,10 @@ class OptionParser
raise $!.set_option(arg, true)
end
begin
- opt, sw, val = sw.parse(val, argv) {|*exc| raise(*exc) if eq}
+ opt, sw, *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-*/, '-')) != '-'
- sw.call(val) if sw
+ sw.call(*val) if sw
rescue ParseError
raise $!.set_option(arg, arg.length > 2)
end
@@ -1300,7 +1300,7 @@ class OptionParser
nil
}
- visit(:search, :short, nil) {|sw| sw.block.call(argv) if !sw.pattern}
+ visit(:search, :short, nil) {|sw| sw.block.call(*argv) if !sw.pattern}
argv
end