aboutsummaryrefslogtreecommitdiff
path: root/ldebug.h
diff options
context:
space:
mode:
Diffstat (limited to 'ldebug.h')
-rw-r--r--ldebug.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/ldebug.h b/ldebug.h
index 0849a302..735e914e 100644
--- a/ldebug.h
+++ b/ldebug.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: ldebug.h,v 1.23 2002/06/24 15:07:21 roberto Exp roberto $ 2** $Id: ldebug.h,v 1.24 2002/07/08 18:21:33 roberto Exp roberto $
3** Auxiliary functions from Debug Interface module 3** Auxiliary functions from Debug Interface module
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -17,7 +17,7 @@
17#define getline(f,pc) (((f)->lineinfo) ? (f)->lineinfo[pc] : 0) 17#define getline(f,pc) (((f)->lineinfo) ? (f)->lineinfo[pc] : 0)
18 18
19#define resethookcount(L) \ 19#define resethookcount(L) \
20 (L->hookcount = (1 << lua_getmaskcount(L->hookmask)) >> 1) 20 (L->hookcount = lua_getmaskcount(L->hookmask), L->hookcount *= L->hookcount)
21 21
22#define setallowhook(L,cond) ((L->hookmask) = ((L->hookmask) & ~1) | (cond)) 22#define setallowhook(L,cond) ((L->hookmask) = ((L->hookmask) & ~1) | (cond))
23#define allowhook(L) ((L->hookmask) & 1) 23#define allowhook(L) ((L->hookmask) & 1)