diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2002-05-01 17:48:12 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2002-05-01 17:48:12 -0300 |
commit | 751cd867d3e0338279fa6f3390c8b7ddc0108659 (patch) | |
tree | 726f6f3cd49109382b2c0d7ee6a1e0fea740afbd /lauxlib.h | |
parent | b36b2a061c88be22e36900146cbcad39bab07f5d (diff) | |
download | lua-751cd867d3e0338279fa6f3390c8b7ddc0108659.tar.gz lua-751cd867d3e0338279fa6f3390c8b7ddc0108659.tar.bz2 lua-751cd867d3e0338279fa6f3390c8b7ddc0108659.zip |
new way to handle errors
Diffstat (limited to 'lauxlib.h')
-rw-r--r-- | lauxlib.h | 4 |
1 files changed, 1 insertions, 3 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lauxlib.h,v 1.43 2002/03/20 12:54:08 roberto Exp roberto $ | 2 | ** $Id: lauxlib.h,v 1.44 2002/04/02 20:42:49 roberto Exp roberto $ |
3 | ** Auxiliary functions for building Lua libraries | 3 | ** Auxiliary functions for building Lua libraries |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -52,8 +52,6 @@ LUALIB_API int luaL_findstring (const char *name, | |||
52 | LUALIB_API int luaL_ref (lua_State *L, int t); | 52 | LUALIB_API int luaL_ref (lua_State *L, int t); |
53 | LUALIB_API void luaL_unref (lua_State *L, int t, int ref); | 53 | LUALIB_API void luaL_unref (lua_State *L, int t, int ref); |
54 | 54 | ||
55 | /* error messages corresponding to error codes */ | ||
56 | LUALIB_API const char *luaL_errstr (int errcode); | ||
57 | 55 | ||
58 | 56 | ||
59 | /* | 57 | /* |