summaryrefslogtreecommitdiff
path: root/lvm.c
diff options
context:
space:
mode:
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 20674c61..ced4d7f1 100644
--- a/lvm.c
+++ b/lvm.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lvm.c,v 1.244 2002/07/05 18:27:39 roberto Exp roberto $ 2** $Id: lvm.c,v 1.245 2002/07/08 18:21:33 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*/
@@ -70,7 +70,7 @@ int luaV_tostring (lua_State *L, TObject *obj) {
70 70
71static void traceexec (lua_State *L) { 71static void traceexec (lua_State *L) {
72 int mask = L->hookmask; 72 int mask = L->hookmask;
73 if (mask >= LUA_MASKCOUNT) { /* instruction hook set? */ 73 if (mask > LUA_MASKLINE) { /* instruction hook set? */
74 if (L->hookcount == 0) { 74 if (L->hookcount == 0) {
75 luaD_callhook(L, LUA_HOOKCOUNT, -1); 75 luaD_callhook(L, LUA_HOOKCOUNT, -1);
76 resethookcount(L); 76 resethookcount(L);