'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.c,v 2.111 2015/02/13 16:01:17 roberto Exp roberto $
** $Id: ldebug.c,v 2.112 2015/03/06 19:49:50 roberto Exp roberto $
** Debug Interface
** See Copyright Notice in lua.h
*/
@@ -34,6 +34,10 @@
#define noLuaClosure(f) ((f) == NULL || (f)->c.tt == LUA_TCCL)
/* Active Lua function (given call info) */
#define ci_func(ci) (clLvalue((ci)->func))
static const char *getfuncname (lua_State *L, CallInfo *ci, const char **name);