diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2018-05-02 15:17:59 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2018-05-02 15:17:59 -0300 |
commit | e64e20ac8136b6cf53601127fc5c69310d644eeb (patch) | |
tree | 614b2da18d9c41882f556266e921c50dcac35d75 /ldebug.h | |
parent | deb807837c1ed327d6069fb6676e624784d01e22 (diff) | |
download | lua-e64e20ac8136b6cf53601127fc5c69310d644eeb.tar.gz lua-e64e20ac8136b6cf53601127fc5c69310d644eeb.tar.bz2 lua-e64e20ac8136b6cf53601127fc5c69310d644eeb.zip |
minimizing the code ran by 'vmfetch' + no more 'vra'
(the code is simpler without 'vra' and conversion is a no-op)
Diffstat (limited to 'ldebug.h')
-rw-r--r-- | ldebug.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: ldebug.h,v 2.15 2017/06/27 11:35:31 roberto Exp roberto $ | 2 | ** $Id: ldebug.h,v 2.16 2018/01/28 15:13:26 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 | */ |
@@ -37,7 +37,7 @@ LUAI_FUNC l_noret luaG_runerror (lua_State *L, const char *fmt, ...); | |||
37 | LUAI_FUNC const char *luaG_addinfo (lua_State *L, const char *msg, | 37 | LUAI_FUNC const char *luaG_addinfo (lua_State *L, const char *msg, |
38 | TString *src, int line); | 38 | TString *src, int line); |
39 | LUAI_FUNC l_noret luaG_errormsg (lua_State *L); | 39 | LUAI_FUNC l_noret luaG_errormsg (lua_State *L); |
40 | LUAI_FUNC void luaG_traceexec (lua_State *L); | 40 | LUAI_FUNC int luaG_traceexec (lua_State *L, const Instruction *pc); |
41 | 41 | ||
42 | 42 | ||
43 | #endif | 43 | #endif |