new way to handle errors

This commit is contained in:
Roberto Ierusalimschy
2002-05-01 17:48:12 -03:00
parent b36b2a061c
commit 751cd867d3
13 changed files with 283 additions and 292 deletions

View File

@@ -1,5 +1,5 @@
/*
** $Id: lauxlib.h,v 1.43 2002/03/20 12:54:08 roberto Exp roberto $
** $Id: lauxlib.h,v 1.44 2002/04/02 20:42:49 roberto Exp roberto $
** Auxiliary functions for building Lua libraries
** See Copyright Notice in lua.h
*/
@@ -52,8 +52,6 @@ LUALIB_API int luaL_findstring (const char *name,
LUALIB_API int luaL_ref (lua_State *L, int t);
LUALIB_API void luaL_unref (lua_State *L, int t, int ref);
/* error messages corresponding to error codes */
LUALIB_API const char *luaL_errstr (int errcode);
/*