diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2010-11-10 15:38:10 -0200 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2010-11-10 15:38:10 -0200 |
commit | e885b91326986f1b5a341e9ff1444c4f46c6241a (patch) | |
tree | e3168da8b68a1dfbd91fdc4d6da095868f1ea658 /luaconf.h | |
parent | fa1f72437858dfc1e756afd7f544b70c66cc3dd5 (diff) | |
download | lua-e885b91326986f1b5a341e9ff1444c4f46c6241a.tar.gz lua-e885b91326986f1b5a341e9ff1444c4f46c6241a.tar.bz2 lua-e885b91326986f1b5a341e9ff1444c4f46c6241a.zip |
'luaL_typeerror' deprecated
Diffstat (limited to 'luaconf.h')
-rw-r--r-- | luaconf.h | 5 |
1 files changed, 1 insertions, 4 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: luaconf.h,v 1.148 2010/10/29 17:52:46 roberto Exp roberto $ | 2 | ** $Id: luaconf.h,v 1.149 2010/11/03 15:16:17 roberto Exp roberto $ |
3 | ** Configuration file for Lua | 3 | ** Configuration file for Lua |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -278,9 +278,6 @@ | |||
278 | #define lua_equal(L,idx1,idx2) lua_compare(L,(idx1),(idx2),LUA_OPEQ) | 278 | #define lua_equal(L,idx1,idx2) lua_compare(L,(idx1),(idx2),LUA_OPEQ) |
279 | #define lua_lessthan(L,idx1,idx2) lua_compare(L,(idx1),(idx2),LUA_OPLT) | 279 | #define lua_lessthan(L,idx1,idx2) lua_compare(L,(idx1),(idx2),LUA_OPLT) |
280 | 280 | ||
281 | /* compatibility with previous wrong spelling */ | ||
282 | #define luaL_typerror luaL_typeerror | ||
283 | |||
284 | /* | 281 | /* |
285 | @@ LUA_COMPAT_MODULE controls compatibility with previous | 282 | @@ LUA_COMPAT_MODULE controls compatibility with previous |
286 | ** module functions 'module' (Lua) and 'luaL_register' (C). | 283 | ** module functions 'module' (Lua) and 'luaL_register' (C). |