aboutsummaryrefslogtreecommitdiff
path: root/lcode.c
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2014-04-02 13:44:42 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2014-04-02 13:44:42 -0300
commitf61ceee70822259725a335ccaaa323416296a6c1 (patch)
tree7b6249b61077a7578111545084eda4b36171abc0 /lcode.c
parent5aeb57f11f2499050907d2ce1d27f66006e226c4 (diff)
downloadlua-f61ceee70822259725a335ccaaa323416296a6c1.tar.gz
lua-f61ceee70822259725a335ccaaa323416296a6c1.tar.bz2
lua-f61ceee70822259725a335ccaaa323416296a6c1.zip
LUAI_FUNC is being used only in header files
Diffstat (limited to 'lcode.c')
-rw-r--r--lcode.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lcode.c b/lcode.c
index a36e2376..52ef2615 100644
--- a/lcode.c
+++ b/lcode.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lcode.c,v 2.85 2014/03/21 13:52:33 roberto Exp roberto $ 2** $Id: lcode.c,v 2.86 2014/04/01 14:39:55 roberto Exp roberto $
3** Code generator for Lua 3** Code generator for Lua
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -195,7 +195,7 @@ void luaK_patchlist (FuncState *fs, int list, int target) {
195} 195}
196 196
197 197
198LUAI_FUNC void luaK_patchclose (FuncState *fs, int list, int level) { 198void luaK_patchclose (FuncState *fs, int list, int level) {
199 level++; /* argument is +1 to reserve 0 as non-op */ 199 level++; /* argument is +1 to reserve 0 as non-op */
200 while (list != NO_JUMP) { 200 while (list != NO_JUMP) {
201 int next = getjump(fs, list); 201 int next = getjump(fs, list);