'luaL_typeerror' spelled right

This commit is contained in:
Roberto Ierusalimschy
2009-02-13 17:39:34 -02:00
parent 41dd32e18e
commit 547e47649f
2 changed files with 10 additions and 6 deletions

View File

@@ -1,5 +1,5 @@
/*
** $Id: lauxlib.h,v 1.93 2007/06/22 15:39:34 roberto Exp roberto $
** $Id: lauxlib.h,v 1.94 2008/01/03 17:07:59 roberto Exp roberto $
** Auxiliary functions for building Lua libraries
** See Copyright Notice in lua.h
*/
@@ -34,7 +34,7 @@ LUALIB_API void (luaL_register) (lua_State *L, const char *libname,
LUALIB_API int (luaL_getmetafield) (lua_State *L, int obj, const char *e);
LUALIB_API int (luaL_callmeta) (lua_State *L, int obj, const char *e);
LUALIB_API const char *luaL_tolstring (lua_State *L, int idx, size_t *len);
LUALIB_API int (luaL_typerror) (lua_State *L, int narg, const char *tname);
LUALIB_API int (luaL_typeerror) (lua_State *L, int narg, const char *tname);
LUALIB_API int (luaL_argerror) (lua_State *L, int numarg, const char *extramsg);
LUALIB_API const char *(luaL_checklstring) (lua_State *L, int numArg,
size_t *l);
@@ -161,6 +161,10 @@ LUALIB_API void (luaL_pushresult) (luaL_Buffer *B);
#define luaL_reg luaL_Reg
/* compatibility with previous wrong spelling */
#define luaL_typerror luaL_typeerror
#endif