From 52ee91dd73199e068d31d3ac138d933ddd4fb9b1 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy <roberto@inf.puc-rio.br> Date: Thu, 22 Feb 2001 14:15:18 -0300 Subject: better encapsulation of some types --- lbaselib.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lbaselib.c') diff --git a/lbaselib.c b/lbaselib.c index cbaf3b4e..44dc38e5 100644 --- a/lbaselib.c +++ b/lbaselib.c @@ -1,5 +1,5 @@ /* -** $Id: lbaselib.c,v 1.23 2001/02/09 19:52:24 roberto Exp roberto $ +** $Id: lbaselib.c,v 1.24 2001/02/20 18:29:54 roberto Exp roberto $ ** Basic library ** See Copyright Notice in lua.h */ @@ -100,7 +100,7 @@ static int luaB_tonumber (lua_State *L) { luaL_arg_check(L, 2 <= base && base <= 36, 2, "base out of range"); n = strtoul(s1, &s2, base); if (s1 != s2) { /* at least one valid digit? */ - while (isspace((unsigned char)*s2)) s2++; /* skip trailing spaces */ + while (isspace(uchar(*s2))) s2++; /* skip trailing spaces */ if (*s2 == '\0') { /* no invalid trailing characters? */ lua_pushnumber(L, n); return 1; -- cgit v1.2.3-55-g6feb