diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2007-06-22 12:33:54 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2007-06-22 12:33:54 -0300 |
commit | 3f78748ef357cbb128c96d7a07866f0953be1792 (patch) | |
tree | f24acd60228a0aed334c11b1db60cbadf3347ddf /lauxlib.h | |
parent | d26bfb5ae4fd11b784298317b39a390ea2a5beb5 (diff) | |
download | lua-3f78748ef357cbb128c96d7a07866f0953be1792.tar.gz lua-3f78748ef357cbb128c96d7a07866f0953be1792.tar.bz2 lua-3f78748ef357cbb128c96d7a07866f0953be1792.zip |
traceback function moved to auxlib
Diffstat (limited to 'lauxlib.h')
-rw-r--r-- | lauxlib.h | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lauxlib.h,v 1.90 2007/05/15 18:46:12 roberto Exp roberto $ | 2 | ** $Id: lauxlib.h,v 1.91 2007/06/21 13:48:04 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 | */ |
@@ -78,6 +78,8 @@ LUALIB_API const char *(luaL_gsub) (lua_State *L, const char *s, const char *p, | |||
78 | LUALIB_API const char *(luaL_findtable) (lua_State *L, int idx, | 78 | LUALIB_API const char *(luaL_findtable) (lua_State *L, int idx, |
79 | const char *fname, int szhint); | 79 | const char *fname, int szhint); |
80 | 80 | ||
81 | LUALIB_API const char *luaL_traceback (lua_State *L, lua_State *L1, | ||
82 | const char *msg, int level); | ||
81 | 83 | ||
82 | 84 | ||
83 | 85 | ||