summaryrefslogtreecommitdiff
path: root/instruby.rb
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2006-09-10 13:59:59 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2006-09-10 13:59:59 +0000
commitf16b5afcac605643011c74948a993e6fb81d65d2 (patch)
treec222f562b3a939e852cac48ff2dcf48d4aa5154e /instruby.rb
parentd78b26583960d06527742833573022cb0be2fe2e (diff)
* instruby.rb (parse_args): remove splat.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@10907 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'instruby.rb')
-rw-r--r--instruby.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/instruby.rb b/instruby.rb
index bda4ead3af..d561bb68af 100644
--- a/instruby.rb
+++ b/instruby.rb
@@ -25,7 +25,7 @@ def parse_args()
opt.on('--dest-dir=DIR') {|dir| $destdir = dir}
opt.on('--make=COMMAND') {|make| $make = make}
opt.on('--mantype=MAN') {|man| $mantype = man}
- opt.on('--make-flags=FLAGS', '--mflags', Shellwords) do |*v|
+ opt.on('--make-flags=FLAGS', '--mflags', Shellwords) do |v|
if arg = v.first
arg.insert(0, '-') if /\A[^-][^=]*\Z/ =~ arg
end