From ad5c34fa0c9410e3b22db3d09ce0da2f97421305 Mon Sep 17 00:00:00 2001 From: dblack Date: Sat, 6 Mar 2004 02:14:33 +0000 Subject: [PATCH] refixed the previous fix in IO#block_scanf git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@5903 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- lib/scanf.rb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/scanf.rb b/lib/scanf.rb index c4da747afe..e2f0d04c14 100644 --- a/lib/scanf.rb +++ b/lib/scanf.rb @@ -659,7 +659,8 @@ class IO last_spec = fstr.last_spec begin current = scanf(str) - final.push(yield(current)) unless current.empty? + break if current.empty? + final.push(yield(current)) end until eof || fstr.last_spec_tried == last_spec return final end