From 46e848a65a866663161edecc81d1b46aa3e36de3 Mon Sep 17 00:00:00 2001 From: nobu Date: Thu, 2 Aug 2007 04:46:41 +0000 Subject: * sprintf.c (rb_f_sprintf): should not check positional number as width. [ruby-core:11838] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@12861 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- sprintf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sprintf.c') diff --git a/sprintf.c b/sprintf.c index 069f6fbf93..78438bf55b 100644 --- a/sprintf.c +++ b/sprintf.c @@ -349,7 +349,6 @@ rb_str_format(int argc, const VALUE *argv, VALUE fmt) case '1': case '2': case '3': case '4': case '5': case '6': case '7': case '8': case '9': - CHECK_FOR_WIDTH(flags); n = 0; GETNUM(n, width); if (*p == '$') { @@ -360,6 +359,7 @@ rb_str_format(int argc, const VALUE *argv, VALUE fmt) p++; goto retry; } + CHECK_FOR_WIDTH(flags); width = n; flags |= FWIDTH; goto retry; -- cgit v1.2.3