diff options
Diffstat (limited to 'lcode.h')
-rw-r--r-- | lcode.h | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lcode.h,v 1.70 2017/12/18 15:44:44 roberto Exp roberto $ | 2 | ** $Id: lcode.h,v 1.71 2018/03/07 15:55:38 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 | */ |
@@ -78,7 +78,8 @@ LUAI_FUNC void luaK_setoneret (FuncState *fs, expdesc *e); | |||
78 | LUAI_FUNC int luaK_jump (FuncState *fs); | 78 | LUAI_FUNC int luaK_jump (FuncState *fs); |
79 | LUAI_FUNC void luaK_ret (FuncState *fs, int first, int nret); | 79 | LUAI_FUNC void luaK_ret (FuncState *fs, int first, int nret); |
80 | LUAI_FUNC void luaK_patchlist (FuncState *fs, int list, int target); | 80 | LUAI_FUNC void luaK_patchlist (FuncState *fs, int list, int target); |
81 | void luaK_patchgoto (FuncState *fs, int list, int target, int hasclose); | 81 | LUAI_FUNC void luaK_patchgoto (FuncState *fs, int list, int target, |
82 | int hasclose); | ||
82 | LUAI_FUNC void luaK_patchtohere (FuncState *fs, int list); | 83 | LUAI_FUNC void luaK_patchtohere (FuncState *fs, int list); |
83 | LUAI_FUNC void luaK_patchclose (FuncState *fs, int list); | 84 | LUAI_FUNC void luaK_patchclose (FuncState *fs, int list); |
84 | LUAI_FUNC void luaK_concat (FuncState *fs, int *l1, int l2); | 85 | LUAI_FUNC void luaK_concat (FuncState *fs, int *l1, int l2); |