From 35023355f21d2c508e2614dc8383d7535dd3a80a Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Fri, 23 Feb 2001 14:28:12 -0300 Subject: details for wchar --- ldo.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ldo.c') diff --git a/ldo.c b/ldo.c index 84a2c985..5b42e302 100644 --- a/ldo.c +++ b/ldo.c @@ -1,5 +1,5 @@ /* -** $Id: ldo.c,v 1.127 2001/02/23 13:38:56 roberto Exp roberto $ +** $Id: ldo.c,v 1.128 2001/02/23 17:17:25 roberto Exp roberto $ ** Stack and Call structure of Lua ** See Copyright Notice in lua.h */ @@ -335,7 +335,7 @@ struct lua_longjmp { static void message (lua_State *L, const l_char *s) { - luaV_getglobal(L, luaS_newliteral(L, l_s(LUA_ERRORMESSAGE)), L->top); + luaV_getglobal(L, luaS_newliteral(L, LUA_ERRORMESSAGE), L->top); if (ttype(L->top) == LUA_TFUNCTION) { incr_top; setsvalue(L->top, luaS_new(L, s)); -- cgit v1.2.3-55-g6feb