aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lvm.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lvm.c b/lvm.c
index d7d36c81..1fe0b420 100644
--- a/lvm.c
+++ b/lvm.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lvm.c,v 2.32 2005/03/09 16:28:07 roberto Exp roberto $ 2** $Id: lvm.c,v 2.33 2005/03/16 16:59:21 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*/
@@ -371,7 +371,7 @@ static StkId Arith (lua_State *L, StkId ra, const TValue *rb,
371#define KBx(i) check_exp(getBMode(GET_OPCODE(i)) == OpArgK, k+GETARG_Bx(i)) 371#define KBx(i) check_exp(getBMode(GET_OPCODE(i)) == OpArgK, k+GETARG_Bx(i))
372 372
373 373
374#define dojump(L,pc,i) {(pc) += (i); lua_threadyield(L);} 374#define dojump(L,pc,i) {(pc) += (i); luai_threadyield(L);}
375 375
376 376
377StkId luaV_execute (lua_State *L, int nexeccalls) { 377StkId luaV_execute (lua_State *L, int nexeccalls) {