diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2018-04-04 11:23:41 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2018-04-04 11:23:41 -0300 |
commit | 03c6a05ec836c3a90a6b8d730120afdad39c092b (patch) | |
tree | 31f0bdf82969b1e082e92d7b5dd5d9e1496d64af /lcode.h | |
parent | 3d0b5edfe4df7ec54d6885b6b6ce917faddf6661 (diff) | |
download | lua-03c6a05ec836c3a90a6b8d730120afdad39c092b.tar.gz lua-03c6a05ec836c3a90a6b8d730120afdad39c092b.tar.bz2 lua-03c6a05ec836c3a90a6b8d730120afdad39c092b.zip |
no more nil-in-table
Diffstat (limited to 'lcode.h')
-rw-r--r-- | lcode.h | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lcode.h,v 1.71 2018/03/07 15:55:38 roberto Exp roberto $ | 2 | ** $Id: lcode.h,v 1.72 2018/03/19 20:03:44 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 | */ |
@@ -90,7 +90,6 @@ LUAI_FUNC void luaK_posfix (FuncState *fs, BinOpr op, expdesc *v1, | |||
90 | expdesc *v2, int line); | 90 | expdesc *v2, int line); |
91 | LUAI_FUNC void luaK_setlist (FuncState *fs, int base, int nelems, int tostore); | 91 | LUAI_FUNC void luaK_setlist (FuncState *fs, int base, int nelems, int tostore); |
92 | LUAI_FUNC void luaK_finish (FuncState *fs); | 92 | LUAI_FUNC void luaK_finish (FuncState *fs); |
93 | LUAI_FUNC void luaK_codeundef (FuncState *fs, expdesc *e); | ||
94 | LUAI_FUNC l_noret luaK_semerror (LexState *ls, const char *msg); | 93 | LUAI_FUNC l_noret luaK_semerror (LexState *ls, const char *msg); |
95 | 94 | ||
96 | 95 | ||