From d666a5183c3fd8500f0a9514be81d70a37918ac2 Mon Sep 17 00:00:00 2001 From: nobu Date: Thu, 20 Mar 2003 09:31:41 +0000 Subject: * lib/optparse.rb (OptionParser#order!): follow recent change of proc argument. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@3588 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- lib/optparse.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/optparse.rb b/lib/optparse.rb index d7434ca4f2..559707abb3 100644 --- a/lib/optparse.rb +++ b/lib/optparse.rb @@ -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 -- cgit v1.2.3