diff options
author | Mike Pall <mike> | 2012-10-01 20:45:30 +0200 |
---|---|---|
committer | Mike Pall <mike> | 2012-10-01 20:45:30 +0200 |
commit | fcddd5a3a0269f30df0c0da6e9ff89d3e70d0e2c (patch) | |
tree | 4bce654a35af804e16eb55324aa92f9ab550a984 /src/lauxlib.h | |
parent | 3ad61689cf11ae73fef5dfe12f7ccb5fe539622e (diff) | |
download | luajit-fcddd5a3a0269f30df0c0da6e9ff89d3e70d0e2c.tar.gz luajit-fcddd5a3a0269f30df0c0da6e9ff89d3e70d0e2c.tar.bz2 luajit-fcddd5a3a0269f30df0c0da6e9ff89d3e70d0e2c.zip |
From Lua 5.2: Add luaL_traceback().
Diffstat (limited to 'src/lauxlib.h')
-rw-r--r-- | src/lauxlib.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/lauxlib.h b/src/lauxlib.h index b0f66d68..fed1491b 100644 --- a/src/lauxlib.h +++ b/src/lauxlib.h | |||
@@ -82,6 +82,8 @@ LUALIB_API int (luaL_loadfilex) (lua_State *L, const char *filename, | |||
82 | const char *mode); | 82 | const char *mode); |
83 | LUALIB_API int (luaL_loadbufferx) (lua_State *L, const char *buff, size_t sz, | 83 | LUALIB_API int (luaL_loadbufferx) (lua_State *L, const char *buff, size_t sz, |
84 | const char *name, const char *mode); | 84 | const char *name, const char *mode); |
85 | LUALIB_API void luaL_traceback (lua_State *L, lua_State *L1, const char *msg, | ||
86 | int level); | ||
85 | 87 | ||
86 | 88 | ||
87 | /* | 89 | /* |