diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2000-09-12 10:46:59 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2000-09-12 10:46:59 -0300 |
commit | 55c3bc2bcba70bceb6ec80ae46f8249dc4026c60 (patch) | |
tree | 4a77d88daf06f4db21b1af6c5afb330c9c7f117c /lua.h | |
parent | 8060193702b21a06af3541555db4cd317c733ce9 (diff) | |
download | lua-55c3bc2bcba70bceb6ec80ae46f8249dc4026c60.tar.gz lua-55c3bc2bcba70bceb6ec80ae46f8249dc4026c60.tar.bz2 lua-55c3bc2bcba70bceb6ec80ae46f8249dc4026c60.zip |
_ALERT is used (and assumed) only by the libs
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 | ||