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-github-6eb53b752617fae9e1329bfe2cfecdcbb593c398.tar.gz | |
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); LUAI_FUNC void luaK_posfix (FuncState *fs, BinOpr op, expdesc *v1, expdesc *v2, int line); LUAI_FUNC void luaK_settablesize (FuncState *fs, int pc, - int ra, int rb, int rc); + int ra, int asize, int hsize); LUAI_FUNC void luaK_setlist (FuncState *fs, int base, int nelems, int tostore); LUAI_FUNC void luaK_finish (FuncState *fs); LUAI_FUNC l_noret luaK_semerror (LexState *ls, const char *msg); |
