mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* lib/optparse.rb: fix to override conv proc.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@12203 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
cc1757bce8
commit
dc8147bca9
2 changed files with 5 additions and 1 deletions
|
@ -1,3 +1,7 @@
|
|||
Fri Apr 20 12:27:04 2007 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||
|
||||
* lib/optparse.rb: fix to override conv proc.
|
||||
|
||||
Fri Apr 20 12:21:28 2007 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||
|
||||
* eval.c (ruby_cleanup): fixed access to out of bound, and inversed
|
||||
|
|
|
@ -1076,7 +1076,7 @@ class OptionParser
|
|||
# directly specified pattern(any object possible to match)
|
||||
if !(String === o) and o.respond_to?(:match)
|
||||
pattern = notwice(o, pattern, 'pattern')
|
||||
conv ||= pattern.method(:convert).to_proc if pattern.respond_to?(:convert)
|
||||
conv = pattern.method(:convert).to_proc if pattern.respond_to?(:convert)
|
||||
next
|
||||
end
|
||||
|
||||
|
|
Loading…
Reference in a new issue