diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2020-02-27 12:59:22 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2020-02-27 12:59:22 -0300 |
commit | 6eb53b752617fae9e1329bfe2cfecdcbb593c398 (patch) | |
tree | c392ef632bbcfbf7b3716f5c6c17b06617bca8da /lcode.h | |
parent | 9b7987a9d1471ba94764286b28e0998f73deb46a (diff) | |
download | lua-6eb53b752617fae9e1329bfe2cfecdcbb593c398.tar.gz lua-6eb53b752617fae9e1329bfe2cfecdcbb593c398.tar.bz2 lua-6eb53b752617fae9e1329bfe2cfecdcbb593c398.zip |
Details
Several details in code (e.g., moving a variable to the most inner
scope that encloses its uses), comments, parameter names, extra tests.
Diffstat (limited to 'lcode.h')
-rw-r--r-- | lcode.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -95,7 +95,7 @@ LUAI_FUNC void luaK_infix (FuncState *fs, BinOpr op, expdesc *v); | |||
95 | LUAI_FUNC void luaK_posfix (FuncState *fs, BinOpr op, expdesc *v1, | 95 | LUAI_FUNC void luaK_posfix (FuncState *fs, BinOpr op, expdesc *v1, |
96 | expdesc *v2, int line); | 96 | expdesc *v2, int line); |
97 | LUAI_FUNC void luaK_settablesize (FuncState *fs, int pc, | 97 | LUAI_FUNC void luaK_settablesize (FuncState *fs, int pc, |
98 | int ra, int rb, int rc); | 98 | int ra, int asize, int hsize); |
99 | LUAI_FUNC void luaK_setlist (FuncState *fs, int base, int nelems, int tostore); | 99 | LUAI_FUNC void luaK_setlist (FuncState *fs, int base, int nelems, int tostore); |
100 | LUAI_FUNC void luaK_finish (FuncState *fs); | 100 | LUAI_FUNC void luaK_finish (FuncState *fs); |
101 | LUAI_FUNC l_noret luaK_semerror (LexState *ls, const char *msg); | 101 | LUAI_FUNC l_noret luaK_semerror (LexState *ls, const char *msg); |