'ci_func' don't need to be exported

This commit is contained in:
Roberto Ierusalimschy
2015-03-11 13:10:41 -03:00
parent b66fedadae
commit 0cf3b6495a
3 changed files with 8 additions and 7 deletions

View File

@@ -1,5 +1,5 @@
/*
** $Id: ldebug.h,v 2.11 2014/02/25 14:31:16 roberto Exp roberto $
** $Id: ldebug.h,v 2.12 2014/11/10 14:46:05 roberto Exp roberto $
** Auxiliary functions from Debug Interface module
** See Copyright Notice in lua.h
*/
@@ -17,9 +17,6 @@
#define resethookcount(L) (L->hookcount = L->basehookcount)
/* Active Lua function (given call info) */
#define ci_func(ci) (clLvalue((ci)->func))
LUAI_FUNC l_noret luaG_typeerror (lua_State *L, const TValue *o,
const char *opname);