aboutsummaryrefslogtreecommitdiff
path: root/ldo.c
diff options
context:
space:
mode:
Diffstat (limited to 'ldo.c')
-rw-r--r--ldo.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/ldo.c b/ldo.c
index a9ff037c..2a0d2592 100644
--- a/ldo.c
+++ b/ldo.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: ldo.c,v 2.62 2009/04/26 21:55:35 roberto Exp roberto $ 2** $Id: ldo.c,v 2.63 2009/04/28 19:04:36 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*/
@@ -60,6 +60,7 @@ void luaD_seterrorobj (lua_State *L, int errcode, StkId oldtop) {
60 break; 60 break;
61 } 61 }
62 case LUA_ERRSYNTAX: 62 case LUA_ERRSYNTAX:
63 case LUA_ERRGCMM:
63 case LUA_ERRRUN: { 64 case LUA_ERRRUN: {
64 setobjs2s(L, oldtop, L->top - 1); /* error message on current top */ 65 setobjs2s(L, oldtop, L->top - 1); /* error message on current top */
65 break; 66 break;