diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2015-03-11 13:10:41 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2015-03-11 13:10:41 -0300 |
commit | 0cf3b6495a9eb58b7e50f43d633414aabab199af (patch) | |
tree | 2ecc23433f5bbd817db7719c3b6bb76965802c1c /ldebug.h | |
parent | b66fedadaef9b6adcdc531d96eb0c4e54a600f6b (diff) | |
download | lua-0cf3b6495a9eb58b7e50f43d633414aabab199af.tar.gz lua-0cf3b6495a9eb58b7e50f43d633414aabab199af.tar.bz2 lua-0cf3b6495a9eb58b7e50f43d633414aabab199af.zip |
'ci_func' don't need to be exported
Diffstat (limited to 'ldebug.h')
-rw-r--r-- | ldebug.h | 5 |
1 files changed, 1 insertions, 4 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: ldebug.h,v 2.11 2014/02/25 14:31:16 roberto Exp roberto $ | 2 | ** $Id: ldebug.h,v 2.12 2014/11/10 14:46:05 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 | */ |
@@ -17,9 +17,6 @@ | |||
17 | 17 | ||
18 | #define resethookcount(L) (L->hookcount = L->basehookcount) | 18 | #define resethookcount(L) (L->hookcount = L->basehookcount) |
19 | 19 | ||
20 | /* Active Lua function (given call info) */ | ||
21 | #define ci_func(ci) (clLvalue((ci)->func)) | ||
22 | |||
23 | 20 | ||
24 | LUAI_FUNC l_noret luaG_typeerror (lua_State *L, const TValue *o, | 21 | LUAI_FUNC l_noret luaG_typeerror (lua_State *L, const TValue *o, |
25 | const char *opname); | 22 | const char *opname); |