aboutsummaryrefslogtreecommitdiff
path: root/ldebug.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2018-05-02 15:17:59 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2018-05-02 15:17:59 -0300
commite64e20ac8136b6cf53601127fc5c69310d644eeb (patch)
tree614b2da18d9c41882f556266e921c50dcac35d75 /ldebug.h
parentdeb807837c1ed327d6069fb6676e624784d01e22 (diff)
downloadlua-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.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/ldebug.h b/ldebug.h
index e8652d84..97a7a00e 100644
--- a/ldebug.h
+++ b/ldebug.h
@@ -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, ...);
37LUAI_FUNC const char *luaG_addinfo (lua_State *L, const char *msg, 37LUAI_FUNC const char *luaG_addinfo (lua_State *L, const char *msg,
38 TString *src, int line); 38 TString *src, int line);
39LUAI_FUNC l_noret luaG_errormsg (lua_State *L); 39LUAI_FUNC l_noret luaG_errormsg (lua_State *L);
40LUAI_FUNC void luaG_traceexec (lua_State *L); 40LUAI_FUNC int luaG_traceexec (lua_State *L, const Instruction *pc);
41 41
42 42
43#endif 43#endif