1
0
mirror of https://github.com/lua/lua.git synced 2025-01-28 06:03:00 +08:00

LUA_COMPAT -> LUA_COMPAT_API (more specific)

This commit is contained in:
Roberto Ierusalimschy 2008-07-18 16:58:10 -03:00
parent f9dec5fc84
commit 4db2cddeee
3 changed files with 7 additions and 7 deletions

View File

@ -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 ** Internal Header for Debugging of the Lua Implementation
** See Copyright Notice in lua.h ** See Copyright Notice in lua.h
*/ */
@ -11,7 +11,7 @@
#include <stdlib.h> #include <stdlib.h>
/* do not use compatibility macros in Lua code */ /* do not use compatibility macros in Lua code */
#undef LUA_COMPAT #undef LUA_COMPAT_API
#define LUA_DEBUG #define LUA_DEBUG

4
lua.h
View File

@ -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 - An Extensible Extension Language
** Lua.org, PUC-Rio, Brazil (http://www.lua.org) ** Lua.org, PUC-Rio, Brazil (http://www.lua.org)
** See Copyright Notice at the end of this file ** 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 ** compatibility macros and functions
*/ */
#if defined(LUA_COMPAT) #if defined(LUA_COMPAT_API)
#define lua_strlen(L,i) lua_objlen(L, (i)) #define lua_strlen(L,i) lua_objlen(L, (i))

View File

@ -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 ** Configuration file for Lua
** See Copyright Notice in lua.h ** 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. @* compatibility with previous versions.
** CHANGE it (undefine it) if you do not need these compatibility facilities. ** CHANGE it (undefine it) if you do not need these compatibility facilities.
*/ */
#define LUA_COMPAT #define LUA_COMPAT_API
/* /*