diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2017-12-22 12:16:46 -0200 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2017-12-22 12:16:46 -0200 |
commit | 4676f6599e04d4eaa78c050616e94994e6a36396 (patch) | |
tree | 94ef87b23d9008bee2fd34df7703c77181b4d655 /lparser.c | |
parent | 1d5b885437286a307a77b5d12756d73d374efd54 (diff) | |
download | lua-4676f6599e04d4eaa78c050616e94994e6a36396.tar.gz lua-4676f6599e04d4eaa78c050616e94994e6a36396.tar.bz2 lua-4676f6599e04d4eaa78c050616e94994e6a36396.zip |
new macros 'isOT'/'isIT'
(plus exchanged parameters of OP_VARARG to make it similar to other
'isOT' instructions)
Diffstat (limited to 'lparser.c')
-rw-r--r-- | lparser.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lparser.c,v 2.173 2017/12/18 12:33:54 roberto Exp roberto $ | 2 | ** $Id: lparser.c,v 2.174 2017/12/18 17:49:31 roberto Exp roberto $ |
3 | ** Lua Parser | 3 | ** Lua Parser |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -977,7 +977,7 @@ static void simpleexp (LexState *ls, expdesc *v) { | |||
977 | int lastparam = fs->f->numparams; | 977 | int lastparam = fs->f->numparams; |
978 | check_condition(ls, fs->f->is_vararg, | 978 | check_condition(ls, fs->f->is_vararg, |
979 | "cannot use '...' outside a vararg function"); | 979 | "cannot use '...' outside a vararg function"); |
980 | init_exp(v, VVARARG, luaK_codeABC(fs, OP_VARARG, 0, 1, lastparam)); | 980 | init_exp(v, VVARARG, luaK_codeABC(fs, OP_VARARG, 0, lastparam, 1)); |
981 | break; | 981 | break; |
982 | } | 982 | } |
983 | case '{': { /* constructor */ | 983 | case '{': { /* constructor */ |