diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1999-03-04 18:15:50 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1999-03-04 18:15:50 -0300 |
commit | 677188de8aa0c4ed49a3db570f0c9ee7cd641ddc (patch) | |
tree | e20d13c603b0630b30b4be7141c7ea131677b56b /lvm.c | |
parent | 6233d21c9d5bda52438ac736ca4ecd57ca16bd70 (diff) | |
download | lua-677188de8aa0c4ed49a3db570f0c9ee7cd641ddc.tar.gz lua-677188de8aa0c4ed49a3db570f0c9ee7cd641ddc.tar.bz2 lua-677188de8aa0c4ed49a3db570f0c9ee7cd641ddc.zip |
details.
Diffstat (limited to 'lvm.c')
-rw-r--r-- | lvm.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lvm.c,v 1.50 1999/02/23 13:38:38 roberto Exp roberto $ | 2 | ** $Id: lvm.c,v 1.51 1999/02/24 17:55:51 roberto Exp roberto $ |
3 | ** Lua virtual machine | 3 | ** Lua virtual machine |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -619,7 +619,7 @@ StkId luaV_execute (Closure *cl, TProtoFunc *tf, StkId base) { | |||
619 | luaC_checkGC(); | 619 | luaC_checkGC(); |
620 | break; | 620 | break; |
621 | 621 | ||
622 | case CALLFUNC: aux = *pc++; { | 622 | case CALL: aux = *pc++; { |
623 | StkId newBase = (S->top-S->stack)-(*pc++); | 623 | StkId newBase = (S->top-S->stack)-(*pc++); |
624 | luaD_call(newBase, aux); | 624 | luaD_call(newBase, aux); |
625 | break; | 625 | break; |