summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2006-10-03 15:59:45 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2006-10-03 15:59:45 +0000
commitc4e5ec23d3cea5fb991a4ff3b1da733168731864 (patch)
treebf8c46bbd1d9a0f993b6a4f0ec9a64a95597b459 /lib
parenteebdfca0b255768092b4c6d8aa828d6518f51f16 (diff)
* parse.y (block_param): restrict block parameters to be local
variables only. * test/ruby/test_iterator.rb (TestIterator::test_nested_iterator): update test suite to conform the last change. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11075 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib')
-rw-r--r--lib/scanf.rb3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/scanf.rb b/lib/scanf.rb
index 3d56e4aabd..87b7e98eeb 100644
--- a/lib/scanf.rb
+++ b/lib/scanf.rb
@@ -542,7 +542,8 @@ module Scanf
@string_left = str
@matched_count = 0
- @specs.each_with_index do |spec,@i|
+ @specs.each_with_index do |spec,i|
+ @i=i
@last_spec_tried = spec
@last_match_tried = spec.match(@string_left)
break unless @last_match_tried