summaryrefslogtreecommitdiff
path: root/lvm.c
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2005-03-18 15:01:37 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2005-03-18 15:01:37 -0300
commit47984a0cc2aae6a806d9d831f2393340a1df676a (patch)
treeef074eb39c93057c3407265387372338aeb554fe /lvm.c
parent086d6b09ce8759b5f532b1163dc1208ff013dbab (diff)
downloadlua-47984a0cc2aae6a806d9d831f2393340a1df676a.tar.gz
lua-47984a0cc2aae6a806d9d831f2393340a1df676a.tar.bz2
lua-47984a0cc2aae6a806d9d831f2393340a1df676a.zip
internal definitions have prefix `luai_'
Diffstat (limited to 'lvm.c')
-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) {