'luaL_typeerror' deprecated

This commit is contained in:
Roberto Ierusalimschy
2010-11-10 15:38:10 -02:00
parent fa1f724378
commit e885b91326
3 changed files with 6 additions and 10 deletions

View File

@@ -1,5 +1,5 @@
/*
** $Id: luaconf.h,v 1.148 2010/10/29 17:52:46 roberto Exp roberto $
** $Id: luaconf.h,v 1.149 2010/11/03 15:16:17 roberto Exp roberto $
** Configuration file for Lua
** See Copyright Notice in lua.h
*/
@@ -278,9 +278,6 @@
#define lua_equal(L,idx1,idx2) lua_compare(L,(idx1),(idx2),LUA_OPEQ)
#define lua_lessthan(L,idx1,idx2) lua_compare(L,(idx1),(idx2),LUA_OPLT)
/* compatibility with previous wrong spelling */
#define luaL_typerror luaL_typeerror
/*
@@ LUA_COMPAT_MODULE controls compatibility with previous
** module functions 'module' (Lua) and 'luaL_register' (C).