summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib/optparse.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/optparse.rb b/lib/optparse.rb
index ea1ba61356..fcd6a881c5 100644
--- a/lib/optparse.rb
+++ b/lib/optparse.rb
@@ -1118,7 +1118,7 @@ Default options, which never appear in option summary.
end
begin
opt, sw, val = sw.parse(rest, argv) {|*exc| raise(*exc)}
- sw.yield(*val) if sw
+ sw.yield(val) if sw
rescue ParseError
raise $!.set_option(arg, rest)
end
@@ -1147,7 +1147,7 @@ Default options, which never appear in option summary.
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.yield(*val) if sw
+ sw.yield(val) if sw
rescue ParseError
raise $!.set_option(arg, has_arg)
end