summaryrefslogtreecommitdiff
path: root/ltests.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2004-09-10 14:30:46 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2004-09-10 14:30:46 -0300
commit226c57fec0cc2a1b9457ec4204f13c5b7a108cc7 (patch)
tree520797ca5f2070ff2c77a4e5756b63bb419dbd60 /ltests.h
parent0de2065f4e7cbbbe301b07835b9dd0b1bd1a4bbb (diff)
downloadlua-github-226c57fec0cc2a1b9457ec4204f13c5b7a108cc7.tar.gz
simpler configuration to turn on all asserts
Diffstat (limited to 'ltests.h')
-rw-r--r--ltests.h5
1 files changed, 1 insertions, 4 deletions
diff --git a/ltests.h b/ltests.h
index 111c38a2..9338851c 100644
--- a/ltests.h
+++ b/ltests.h
@@ -1,5 +1,5 @@
/*
-** $Id: ltests.h,v 2.8 2004/07/09 14:29:29 roberto Exp roberto $
+** $Id: ltests.h,v 2.9 2004/07/16 13:17:00 roberto Exp roberto $
** Internal Header for Debugging of the Lua Implementation
** See Copyright Notice in lua.h
*/
@@ -17,9 +17,6 @@
#include <assert.h>
#undef lua_assert
#define lua_assert(c) assert(c)
-#define check_exp(c,e) (lua_assert(c), (e))
-#undef api_check
-#define api_check(L, o) lua_assert(o)
/* to avoid warnings, and to make sure value is really unused */