summaryrefslogtreecommitdiff
path: root/ldblib.c
diff options
context:
space:
mode:
Diffstat (limited to 'ldblib.c')
-rw-r--r--ldblib.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ldblib.c b/ldblib.c
index b6c78588..fc056cce 100644
--- a/ldblib.c
+++ b/ldblib.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: ldblib.c,v 1.61 2002/06/25 19:16:44 roberto Exp roberto $ 2** $Id: ldblib.c,v 1.62 2002/07/08 18:21:33 roberto Exp roberto $
3** Interface from Lua to its debug API 3** Interface from Lua to its debug API
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -132,7 +132,7 @@ static int makemask (const char *smask, int count) {
132 if (strchr(smask, 'c')) mask |= LUA_MASKCALL; 132 if (strchr(smask, 'c')) mask |= LUA_MASKCALL;
133 if (strchr(smask, 'r')) mask |= LUA_MASKRET; 133 if (strchr(smask, 'r')) mask |= LUA_MASKRET;
134 if (strchr(smask, 'l')) mask |= LUA_MASKLINE; 134 if (strchr(smask, 'l')) mask |= LUA_MASKLINE;
135 return mask | lua_maskcount(count); 135 return mask | LUA_MASKCOUNT(count);
136} 136}
137 137
138 138