summaryrefslogtreecommitdiff
path: root/ldo.c
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2001-02-23 14:28:12 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2001-02-23 14:28:12 -0300
commit35023355f21d2c508e2614dc8383d7535dd3a80a (patch)
tree060e939e2e89f30d7b4c35467692a082e59fc684 /ldo.c
parent39b79783297bee79db9853b63d199e120a009a8f (diff)
downloadlua-35023355f21d2c508e2614dc8383d7535dd3a80a.tar.gz
lua-35023355f21d2c508e2614dc8383d7535dd3a80a.tar.bz2
lua-35023355f21d2c508e2614dc8383d7535dd3a80a.zip
details for wchar
Diffstat (limited to 'ldo.c')
-rw-r--r--ldo.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ldo.c b/ldo.c
index 84a2c985..5b42e302 100644
--- a/ldo.c
+++ b/ldo.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: ldo.c,v 1.127 2001/02/23 13:38:56 roberto Exp roberto $ 2** $Id: ldo.c,v 1.128 2001/02/23 17:17:25 roberto Exp roberto $
3** Stack and Call structure of Lua 3** Stack and Call structure of Lua
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -335,7 +335,7 @@ struct lua_longjmp {
335 335
336 336
337static void message (lua_State *L, const l_char *s) { 337static void message (lua_State *L, const l_char *s) {
338 luaV_getglobal(L, luaS_newliteral(L, l_s(LUA_ERRORMESSAGE)), L->top); 338 luaV_getglobal(L, luaS_newliteral(L, LUA_ERRORMESSAGE), L->top);
339 if (ttype(L->top) == LUA_TFUNCTION) { 339 if (ttype(L->top) == LUA_TFUNCTION) {
340 incr_top; 340 incr_top;
341 setsvalue(L->top, luaS_new(L, s)); 341 setsvalue(L->top, luaS_new(L, s));