diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1997-06-16 16:48:18 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1997-06-16 16:48:18 -0300 |
commit | 4d2de484f653fe46ac97fcb7e02f3cc7762cd962 (patch) | |
tree | d406637e53935cb87239ddc4531147e12a4732b0 /lua.h | |
parent | 312f78d9258376473bc21079518db6942f7ff939 (diff) | |
download | lua-4d2de484f653fe46ac97fcb7e02f3cc7762cd962.tar.gz lua-4d2de484f653fe46ac97fcb7e02f3cc7762cd962.tar.bz2 lua-4d2de484f653fe46ac97fcb7e02f3cc7762cd962.zip |
"lua_seterrormethod" should return the previous handler.
Diffstat (limited to 'lua.h')
-rw-r--r-- | lua.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -2,7 +2,7 @@ | |||
2 | ** LUA - An Extensible Extension Language | 2 | ** LUA - An Extensible Extension Language |
3 | ** TeCGraf: Grupo de Tecnologia em Computacao Grafica, PUC-Rio, Brazil | 3 | ** TeCGraf: Grupo de Tecnologia em Computacao Grafica, PUC-Rio, Brazil |
4 | ** e-mail: lua@tecgraf.puc-rio.br | 4 | ** e-mail: lua@tecgraf.puc-rio.br |
5 | ** $Id: lua.h,v 4.6 1997/06/09 17:28:14 roberto Exp roberto $ | 5 | ** $Id: lua.h,v 4.7 1997/06/12 18:27:29 roberto Exp roberto $ |
6 | */ | 6 | */ |
7 | 7 | ||
8 | 8 | ||
@@ -23,7 +23,7 @@ typedef unsigned int lua_Object; | |||
23 | 23 | ||
24 | lua_Object lua_settagmethod (int tag, char *event, lua_CFunction method); | 24 | lua_Object lua_settagmethod (int tag, char *event, lua_CFunction method); |
25 | lua_Object lua_gettagmethod (int tag, char *event); | 25 | lua_Object lua_gettagmethod (int tag, char *event); |
26 | void lua_seterrormethod (lua_CFunction method); | 26 | lua_Object lua_seterrormethod (lua_CFunction method); |
27 | 27 | ||
28 | int lua_newtag (void); | 28 | int lua_newtag (void); |
29 | void lua_settag (int tag); /* In: object */ | 29 | void lua_settag (int tag); /* In: object */ |