aboutsummaryrefslogtreecommitdiff
path: root/lua.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2008-07-18 16:58:10 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2008-07-18 16:58:10 -0300
commit4db2cddeee6889a3e7ed9a17a31049d45a6fe22f (patch)
treefd0f68e0236571a66aebdc8b7c355eba0a5b7ba2 /lua.h
parentf9dec5fc84199a782c4ad9c1ec8913574cdfdcd1 (diff)
downloadlua-4db2cddeee6889a3e7ed9a17a31049d45a6fe22f.tar.gz
lua-4db2cddeee6889a3e7ed9a17a31049d45a6fe22f.tar.bz2
lua-4db2cddeee6889a3e7ed9a17a31049d45a6fe22f.zip
LUA_COMPAT -> LUA_COMPAT_API (more specific)
Diffstat (limited to 'lua.h')
-rw-r--r--lua.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lua.h b/lua.h
index 4a84cffc..1603b005 100644
--- a/lua.h
+++ b/lua.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lua.h,v 1.228 2008/05/09 16:51:44 roberto Exp roberto $ 2** $Id: lua.h,v 1.229 2008/07/11 17:50:31 roberto Exp roberto $
3** Lua - An Extensible Extension Language 3** Lua - An Extensible Extension Language
4** Lua.org, PUC-Rio, Brazil (http://www.lua.org) 4** Lua.org, PUC-Rio, Brazil (http://www.lua.org)
5** See Copyright Notice at the end of this file 5** 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);
282/* 282/*
283** compatibility macros and functions 283** compatibility macros and functions
284*/ 284*/
285#if defined(LUA_COMPAT) 285#if defined(LUA_COMPAT_API)
286 286
287#define lua_strlen(L,i) lua_objlen(L, (i)) 287#define lua_strlen(L,i) lua_objlen(L, (i))
288 288