diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2015-05-22 14:45:56 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2015-05-22 14:45:56 -0300 |
commit | 6142e663e4d3180d2afaea50bd0978a040f518a4 (patch) | |
tree | 55d789eb4fa54dba3bf936b7f9ea5751ad4742fa /ldebug.h | |
parent | 6dc20ff293239efd59ec8be7d14a31af084e28d5 (diff) | |
download | lua-6142e663e4d3180d2afaea50bd0978a040f518a4.tar.gz lua-6142e663e4d3180d2afaea50bd0978a040f518a4.tar.bz2 lua-6142e663e4d3180d2afaea50bd0978a040f518a4.zip |
reuse of 'addinfo' by lexical errors
Diffstat (limited to 'ldebug.h')
-rw-r--r-- | ldebug.h | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: ldebug.h,v 2.12 2014/11/10 14:46:05 roberto Exp roberto $ | 2 | ** $Id: ldebug.h,v 2.13 2015/03/11 16:10:41 roberto Exp roberto $ |
3 | ** Auxiliary functions from Debug Interface module | 3 | ** Auxiliary functions from Debug Interface module |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -30,6 +30,8 @@ LUAI_FUNC l_noret luaG_tointerror (lua_State *L, const TValue *p1, | |||
30 | LUAI_FUNC l_noret luaG_ordererror (lua_State *L, const TValue *p1, | 30 | LUAI_FUNC l_noret luaG_ordererror (lua_State *L, const TValue *p1, |
31 | const TValue *p2); | 31 | const TValue *p2); |
32 | LUAI_FUNC l_noret luaG_runerror (lua_State *L, const char *fmt, ...); | 32 | LUAI_FUNC l_noret luaG_runerror (lua_State *L, const char *fmt, ...); |
33 | LUAI_FUNC const char *luaG_addinfo (lua_State *L, const char *msg, | ||
34 | TString *src, int line); | ||
33 | LUAI_FUNC l_noret luaG_errormsg (lua_State *L); | 35 | LUAI_FUNC l_noret luaG_errormsg (lua_State *L); |
34 | LUAI_FUNC void luaG_traceexec (lua_State *L); | 36 | LUAI_FUNC void luaG_traceexec (lua_State *L); |
35 | 37 | ||