diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2002-08-08 17:08:41 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2002-08-08 17:08:41 -0300 |
commit | 9998082839bfffe01d7b614ab61ad35629a2c356 (patch) | |
tree | 3722acbcdda6fff4bdccc059c443618a59978726 /lauxlib.h | |
parent | 08da48a73ce9ec8d0672c45f67ff32650e937477 (diff) | |
download | lua-9998082839bfffe01d7b614ab61ad35629a2c356.tar.gz lua-9998082839bfffe01d7b614ab61ad35629a2c356.tar.bz2 lua-9998082839bfffe01d7b614ab61ad35629a2c356.zip |
external messages add their own extra information
Diffstat (limited to 'lauxlib.h')
-rw-r--r-- | lauxlib.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lauxlib.h,v 1.50 2002/06/25 19:15:21 roberto Exp roberto $ | 2 | ** $Id: lauxlib.h,v 1.51 2002/07/01 19:23:58 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 | */ |
@@ -44,6 +44,7 @@ LUALIB_API void luaL_check_stack (lua_State *L, int space, const char *msg); | |||
44 | LUALIB_API void luaL_check_type (lua_State *L, int narg, int t); | 44 | LUALIB_API void luaL_check_type (lua_State *L, int narg, int t); |
45 | LUALIB_API void luaL_check_any (lua_State *L, int narg); | 45 | LUALIB_API void luaL_check_any (lua_State *L, int narg); |
46 | 46 | ||
47 | LUALIB_API void luaL_where (lua_State *L, int level); | ||
47 | LUALIB_API int luaL_error (lua_State *L, const char *fmt, ...); | 48 | LUALIB_API int luaL_error (lua_State *L, const char *fmt, ...); |
48 | 49 | ||
49 | LUALIB_API int luaL_findstring (const char *name, | 50 | LUALIB_API int luaL_findstring (const char *name, |