diff options
Diffstat (limited to 'lua.h')
-rw-r--r-- | lua.h | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lua.h,v 1.66 2000/09/05 19:33:32 roberto Exp roberto $ | 2 | ** $Id: lua.h,v 1.67 2000/09/11 19:42:57 roberto Exp roberto $ |
3 | ** Lua - An Extensible Extension Language | 3 | ** Lua - An Extensible Extension Language |
4 | ** TeCGraf: Grupo de Tecnologia em Computacao Grafica, PUC-Rio, Brazil | 4 | ** TeCGraf: Grupo de Tecnologia em Computacao Grafica, PUC-Rio, Brazil |
5 | ** e-mail: lua@tecgraf.puc-rio.br | 5 | ** e-mail: lua@tecgraf.puc-rio.br |
@@ -21,7 +21,6 @@ | |||
21 | #define LUA_AUTHORS "W. Celes, R. Ierusalimschy & L. H. de Figueiredo" | 21 | #define LUA_AUTHORS "W. Celes, R. Ierusalimschy & L. H. de Figueiredo" |
22 | 22 | ||
23 | 23 | ||
24 | #define LUA_ALERT "_ALERT" | ||
25 | #define LUA_ERRORMESSAGE "_ERRORMESSAGE" | 24 | #define LUA_ERRORMESSAGE "_ERRORMESSAGE" |
26 | 25 | ||
27 | 26 | ||
@@ -38,9 +37,9 @@ | |||
38 | 37 | ||
39 | 38 | ||
40 | /* error codes for lua_do* */ | 39 | /* error codes for lua_do* */ |
40 | #define LUA_ERRRUN 1 | ||
41 | #define LUA_ERRFILE 2 | 41 | #define LUA_ERRFILE 2 |
42 | #define LUA_ERRSYNTAX 3 | 42 | #define LUA_ERRSYNTAX 3 |
43 | #define LUA_ERRRUN 1 | ||
44 | #define LUA_ERRMEM 4 | 43 | #define LUA_ERRMEM 4 |
45 | 44 | ||
46 | 45 | ||