diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2002-05-15 15:57:44 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2002-05-15 15:57:44 -0300 |
commit | b7a0503c1d72603b8f7e480f2abecbc05348cb69 (patch) | |
tree | bfac646fea320f73abec2ee57a0c96a704452884 /ldo.h | |
parent | 1c328a191a8b86b7ad601cb9a935f1da5373fdf7 (diff) | |
download | lua-b7a0503c1d72603b8f7e480f2abecbc05348cb69.tar.gz lua-b7a0503c1d72603b8f7e480f2abecbc05348cb69.tar.bz2 lua-b7a0503c1d72603b8f7e480f2abecbc05348cb69.zip |
new format for error messages
Diffstat (limited to 'ldo.h')
-rw-r--r-- | ldo.h | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: ldo.h,v 1.43 2002/04/22 14:40:50 roberto Exp roberto $ | 2 | ** $Id: ldo.h,v 1.44 2002/05/01 20:40:42 roberto Exp roberto $ |
3 | ** Stack and Call structure of Lua | 3 | ** Stack and Call structure of Lua |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -43,7 +43,6 @@ void luaD_growstack (lua_State *L, int n); | |||
43 | 43 | ||
44 | void luaD_error (lua_State *L, const char *s, int errcode); | 44 | void luaD_error (lua_State *L, const char *s, int errcode); |
45 | void luaD_errorobj (lua_State *L, const TObject *s, int errcode); | 45 | void luaD_errorobj (lua_State *L, const TObject *s, int errcode); |
46 | void luaD_runerror (lua_State *L, const char *s); | ||
47 | int luaD_runprotected (lua_State *L, Pfunc f, TObject *ud); | 46 | int luaD_runprotected (lua_State *L, Pfunc f, TObject *ud); |
48 | 47 | ||
49 | 48 | ||