diff options
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.30 1998/06/11 18:21:37 roberto Exp roberto $ | 2 | ** $Id: lvm.c,v 1.31 1998/07/12 16:16:43 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 | */ |
@@ -316,7 +316,7 @@ StkId luaV_execute (Closure *cl, TProtoFunc *tf, StkId base) | |||
316 | luaC_checkGC(); | 316 | luaC_checkGC(); |
317 | adjust_varargs(base+(*pc++)-ZEROVARARG); | 317 | adjust_varargs(base+(*pc++)-ZEROVARARG); |
318 | } | 318 | } |
319 | while (1) { | 319 | for (;;) { |
320 | int aux; | 320 | int aux; |
321 | switch ((OpCode)(aux = *pc++)) { | 321 | switch ((OpCode)(aux = *pc++)) { |
322 | 322 | ||