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

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.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))