Browse Source

LUA_COMPAT -> LUA_COMPAT_API (more specific)

Roberto Ierusalimschy 17 years ago
parent
commit
4db2cddeee
3 changed files with 7 additions and 7 deletions
  1. 2 2
      ltests.h
  2. 2 2
      lua.h
  3. 3 3
      luaconf.h

+ 2 - 2
ltests.h

@@ -1,5 +1,5 @@
 /*
-** $Id: ltests.h,v 2.21 2008/06/23 16:50:34 roberto Exp roberto $
+** $Id: ltests.h,v 2.22 2008/07/11 17:51:01 roberto Exp roberto $
 ** Internal Header for Debugging of the Lua Implementation
 ** See Copyright Notice in lua.h
 */
@@ -11,7 +11,7 @@
 #include <stdlib.h>
 
 /* do not use compatibility macros in Lua code */
-#undef LUA_COMPAT
+#undef LUA_COMPAT_API
 
 #define LUA_DEBUG
 

+ 2 - 2
lua.h

@@ -1,5 +1,5 @@
 /*
-** $Id: lua.h,v 1.228 2008/05/09 16:51:44 roberto Exp roberto $
+** $Id: lua.h,v 1.229 2008/07/11 17:50:31 roberto Exp roberto $
 ** Lua - An Extensible Extension Language
 ** Lua.org, PUC-Rio, Brazil (http://www.lua.org)
 ** See Copyright Notice at the end of this file
@@ -282,7 +282,7 @@ LUA_API void lua_setallocf (lua_State *L, lua_Alloc f, void *ud);
 /*
 ** compatibility macros and functions
 */
-#if defined(LUA_COMPAT)
+#if defined(LUA_COMPAT_API)
 
 #define lua_strlen(L,i)		lua_objlen(L, (i))
 

+ 3 - 3
luaconf.h

@@ -1,5 +1,5 @@
 /*
-** $Id: luaconf.h,v 1.98 2008/06/25 15:27:12 roberto Exp roberto $
+** $Id: luaconf.h,v 1.99 2008/07/11 17:50:31 roberto Exp roberto $
 ** Configuration file for Lua
 ** See Copyright Notice in lua.h
 */
@@ -324,11 +324,11 @@
 
 
 /*
-@@ LUA_COMPAT includes some macros and functions that supply some
+@@ LUA_COMPAT_API includes some macros and functions that supply some
 @* compatibility with previous versions.
 ** CHANGE it (undefine it) if you do not need these compatibility facilities.
 */
-#define LUA_COMPAT
+#define LUA_COMPAT_API
 
 
 /*