lua

A copy of the Lua development repository
Log | Files | Refs | README

commit 8fd0f6a82b63f4a2f77578fb70c9fe46047f295b
parent eb3de8768a6b614597f7e5f018fc31a9f52441df
Author: Roberto Ierusalimschy <roberto@inf.puc-rio.br>
Date:   Thu, 13 Jun 2002 10:45:09 -0300

new macro to check conditions on expression macros

Diffstat:
Mllimits.h | 7++++++-
Mltests.h | 3++-
2 files changed, 8 insertions(+), 2 deletions(-)

diff --git a/llimits.h b/llimits.h @@ -1,5 +1,5 @@ /* -** $Id: llimits.h,v 1.42 2002/03/26 20:46:10 roberto Exp roberto $ +** $Id: llimits.h,v 1.43 2002/04/23 14:59:35 roberto Exp roberto $ ** Limits, basic types, and some other `installation-dependent' definitions ** See Copyright Notice in lua.h */ @@ -83,6 +83,11 @@ union L_Umaxalign { LUSER_ALIGNMENT_T u; void *s; long l; }; #endif +#ifndef check_exp +#define check_exp(c,e) (e) +#endif + + #ifndef UNUSED #define UNUSED(x) ((void)(x)) /* to avoid warnings */ #endif diff --git 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 <assert.h> #define lua_assert(c) assert(c) +#define check_exp(c,e) (lua_assert(c), (e)) #define api_check(L, o) lua_assert(o)