From 37e9c2e74486ed443151430a9b73a3844d3554ef Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy <roberto@inf.puc-rio.br> Date: Mon, 30 Oct 2000 14:29:59 -0200 Subject: macro DEBUG renamed to LUA_DEBUG --- lobject.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'lobject.h') diff --git a/lobject.h b/lobject.h index a3638622..402eec40 100644 --- a/lobject.h +++ b/lobject.h @@ -1,5 +1,5 @@ /* -** $Id: lobject.h,v 1.79 2000/10/05 12:14:08 roberto Exp roberto $ +** $Id: lobject.h,v 1.80 2000/10/26 12:47:05 roberto Exp roberto $ ** Type definitions for Lua objects ** See Copyright Notice in lua.h */ @@ -12,7 +12,7 @@ #include "lua.h" -#ifdef DEBUG +#ifdef LUA_DEBUG #undef NDEBUG #include <assert.h> #define LUA_INTERNALERROR(s) assert(((void)s,0)) @@ -23,7 +23,7 @@ #endif -#ifdef DEBUG +#ifdef LUA_DEBUG /* to avoid warnings, and make sure value is really unused */ #define UNUSED(x) (x=0, (void)(x)) #else -- cgit v1.2.3-55-g6feb