LUAI_FUNC is being used only in header files

This commit is contained in:
Roberto Ierusalimschy
2014-04-02 13:44:42 -03:00
parent 5aeb57f11f
commit f61ceee708
3 changed files with 6 additions and 6 deletions

View File

@@ -1,5 +1,5 @@
/*
** $Id: lcode.c,v 2.85 2014/03/21 13:52:33 roberto Exp roberto $
** $Id: lcode.c,v 2.86 2014/04/01 14:39:55 roberto Exp roberto $
** Code generator for Lua
** See Copyright Notice in lua.h
*/
@@ -195,7 +195,7 @@ void luaK_patchlist (FuncState *fs, int list, int target) {
}
LUAI_FUNC void luaK_patchclose (FuncState *fs, int list, int level) {
void luaK_patchclose (FuncState *fs, int list, int level) {
level++; /* argument is +1 to reserve 0 as non-op */
while (list != NO_JUMP) {
int next = getjump(fs, list);