diff options
Diffstat (limited to 'lauxlib.h')
-rw-r--r-- | lauxlib.h | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -153,6 +153,10 @@ LUALIB_API void (luaL_requiref) (lua_State *L, const char *modname, | |||
153 | #define luaL_loadbuffer(L,s,sz,n) luaL_loadbufferx(L,s,sz,n,NULL) | 153 | #define luaL_loadbuffer(L,s,sz,n) luaL_loadbufferx(L,s,sz,n,NULL) |
154 | 154 | ||
155 | 155 | ||
156 | /* push the value used to represent failure/error */ | ||
157 | #define luaL_pushfail(L) lua_pushnil(L) | ||
158 | |||
159 | |||
156 | /* | 160 | /* |
157 | ** {====================================================== | 161 | ** {====================================================== |
158 | ** Generic Buffer manipulation | 162 | ** Generic Buffer manipulation |