lua

A copy of the Lua development repository
Log | Files | Refs | README

commit 55c3bc2bcba70bceb6ec80ae46f8249dc4026c60
parent 8060193702b21a06af3541555db4cd317c733ce9
Author: Roberto Ierusalimschy <roberto@inf.puc-rio.br>
Date:   Tue, 12 Sep 2000 10:46:37 -0300

_ALERT is used (and assumed) only by the libs

Diffstat:
Mlua.h | 5++---
Mlualib.h | 5++++-
2 files changed, 6 insertions(+), 4 deletions(-)

diff --git a/lua.h b/lua.h @@ -1,5 +1,5 @@ /* -** $Id: lua.h,v 1.66 2000/09/05 19:33:32 roberto Exp roberto $ +** $Id: lua.h,v 1.67 2000/09/11 19:42:57 roberto Exp roberto $ ** Lua - An Extensible Extension Language ** TeCGraf: Grupo de Tecnologia em Computacao Grafica, PUC-Rio, Brazil ** e-mail: lua@tecgraf.puc-rio.br @@ -21,7 +21,6 @@ #define LUA_AUTHORS "W. Celes, R. Ierusalimschy & L. H. de Figueiredo" -#define LUA_ALERT "_ALERT" #define LUA_ERRORMESSAGE "_ERRORMESSAGE" @@ -38,9 +37,9 @@ /* error codes for lua_do* */ +#define LUA_ERRRUN 1 #define LUA_ERRFILE 2 #define LUA_ERRSYNTAX 3 -#define LUA_ERRRUN 1 #define LUA_ERRMEM 4 diff --git a/lualib.h b/lualib.h @@ -1,5 +1,5 @@ /* -** $Id: lualib.h,v 1.10 2000/08/09 19:16:57 roberto Exp roberto $ +** $Id: lualib.h,v 1.11 2000/09/05 19:33:32 roberto Exp roberto $ ** Lua standard libraries ** See Copyright Notice in lua.h */ @@ -10,6 +10,9 @@ #include "lua.h" + +#define LUA_ALERT "_ALERT" + void lua_baselibopen (lua_State *L); void lua_iolibopen (lua_State *L); void lua_strlibopen (lua_State *L);