summaryrefslogtreecommitdiff
path: root/src/ldebug.c
diff options
context:
space:
mode:
authorLua Team <team@lua.org>2011-11-30 12:00:00 +0000
committerrepogen <>2011-11-30 12:00:00 +0000
commited0f7cc8d3f96dce4dac98bc395506f0513a332c (patch)
tree74d1d70594793be2284559b22c68cc0355007379 /src/ldebug.c
parentac1beaea25f1fec341e1edb168c63ac7131a6bdd (diff)
downloadlua-github-ed0f7cc8d3f96dce4dac98bc395506f0513a332c.tar.gz
Lua 5.2.0-rc45.2.0-rc4
Diffstat (limited to 'src/ldebug.c')
-rw-r--r--src/ldebug.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/ldebug.c b/src/ldebug.c
index 786dcd04..31b7ae40 100644
--- a/src/ldebug.c
+++ b/src/ldebug.c
@@ -1,5 +1,5 @@
/*
-** $Id: ldebug.c,v 2.87 2011/10/07 20:45:19 roberto Exp $
+** $Id: ldebug.c,v 2.88 2011/11/30 12:43:51 roberto Exp $
** Debug Interface
** See Copyright Notice in lua.h
*/
@@ -494,7 +494,7 @@ static const char *getupvalname (CallInfo *ci, const TValue *o,
}
-void luaG_typeerror (lua_State *L, const TValue *o, const char *op) {
+l_noret luaG_typeerror (lua_State *L, const TValue *o, const char *op) {
CallInfo *ci = L->ci;
const char *name = NULL;
const char *t = objtypename(o);
@@ -513,7 +513,7 @@ void luaG_typeerror (lua_State *L, const TValue *o, const char *op) {
}
-void luaG_concaterror (lua_State *L, StkId p1, StkId p2) {
+l_noret luaG_concaterror (lua_State *L, StkId p1, StkId p2) {
if (ttisstring(p1) || ttisnumber(p1)) p1 = p2;
lua_assert(!ttisstring(p1) && !ttisnumber(p2));
luaG_typeerror(L, p1, "concatenate");