lua

A copy of the Lua development repository
Log | Files | Refs | README

commit 577ae944e9415032410da56e648b7535620b61f5
parent 68d1091b7996d4e1b40fe43f4bcae2e7594ab806
Author: Roberto Ierusalimschy <roberto@inf.puc-rio.br>
Date:   Tue, 22 Nov 1994 14:02:34 -0200

correction of function tonumber

Diffstat:
Mopcode.c | 5+++--
1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/opcode.c b/opcode.c @@ -3,7 +3,7 @@ ** TecCGraf - PUC-Rio */ -char *rcs_opcode="$Id: opcode.c,v 3.19 1994/11/21 13:30:15 roberto Exp $"; +char *rcs_opcode="$Id: opcode.c,v 3.20 1994/11/21 18:22:58 roberto Exp roberto $"; #include <setjmp.h> #include <stdio.h> @@ -138,9 +138,10 @@ static char *lua_strconc (char *l, char *r) static int lua_tonumber (Object *obj) { float t; + char c; if (tag(obj) != LUA_T_STRING) return 1; - else if (sscanf(svalue(obj), "%f %*c",&t) == 1) + else if (sscanf(svalue(obj), "%f %c",&t, &c) == 1) { nvalue(obj) = t; tag(obj) = LUA_T_NUMBER;