From e03767b3eb45059ef9a367161154bec407d78f35 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Wed, 13 Jan 1999 17:08:37 -0200 Subject: details (comments) --- lobject.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lobject.c') diff --git a/lobject.c b/lobject.c index 0462fc8b..b68f7e98 100644 --- a/lobject.c +++ b/lobject.c @@ -1,5 +1,5 @@ /* -** $Id: lobject.c,v 1.14 1998/12/27 20:25:20 roberto Exp roberto $ +** $Id: lobject.c,v 1.15 1999/01/04 13:37:07 roberto Exp roberto $ ** Some generic functions over Lua objects ** See Copyright Notice in lua.h */ @@ -90,7 +90,7 @@ static double expten (unsigned int e) { } -double luaO_str2d (char *s) { +double luaO_str2d (char *s) { /* LUA_NUMBER */ double a = 0.0; int point = 0; if (!isdigit((unsigned char)*s) && !isdigit((unsigned char)*(s+1))) -- cgit v1.2.3-55-g6feb