From 8fd0f6a82b63f4a2f77578fb70c9fe46047f295b Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Thu, 13 Jun 2002 10:45:31 -0300 Subject: new macro to check conditions on expression macros --- ltests.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'ltests.h') diff --git a/ltests.h b/ltests.h index 6aef3984..9a03d27a 100644 --- a/ltests.h +++ b/ltests.h @@ -1,5 +1,5 @@ /* -** $Id: ltests.h,v 1.12 2002/03/08 19:17:59 roberto Exp roberto $ +** $Id: ltests.h,v 1.13 2002/06/11 16:26:12 roberto Exp roberto $ ** Internal Header for Debugging of the Lua Implementation ** See Copyright Notice in lua.h */ @@ -18,6 +18,7 @@ #undef NDEBUG #include #define lua_assert(c) assert(c) +#define check_exp(c,e) (lua_assert(c), (e)) #define api_check(L, o) lua_assert(o) -- cgit v1.2.3-55-g6feb