lua

A copy of the Lua development repository
Log | Files | Refs | README

commit 47984a0cc2aae6a806d9d831f2393340a1df676a
parent 086d6b09ce8759b5f532b1163dc1208ff013dbab
Author: Roberto Ierusalimschy <roberto@inf.puc-rio.br>
Date:   Fri, 18 Mar 2005 15:01:15 -0300

internal definitions have prefix `luai_'

Diffstat:
Mlvm.c | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/lvm.c b/lvm.c @@ -1,5 +1,5 @@ /* -** $Id: lvm.c,v 2.32 2005/03/09 16:28:07 roberto Exp roberto $ +** $Id: lvm.c,v 2.33 2005/03/16 16:59:21 roberto Exp roberto $ ** Lua virtual machine ** See Copyright Notice in lua.h */ @@ -371,7 +371,7 @@ static StkId Arith (lua_State *L, StkId ra, const TValue *rb, #define KBx(i) check_exp(getBMode(GET_OPCODE(i)) == OpArgK, k+GETARG_Bx(i)) -#define dojump(L,pc,i) {(pc) += (i); lua_threadyield(L);} +#define dojump(L,pc,i) {(pc) += (i); luai_threadyield(L);} StkId luaV_execute (lua_State *L, int nexeccalls) {