aboutsummaryrefslogtreecommitdiff
path: root/lbuiltin.c
diff options
context:
space:
mode:
Diffstat (limited to 'lbuiltin.c')
-rw-r--r--lbuiltin.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/lbuiltin.c b/lbuiltin.c
index 9b0e29fe..e0c9627b 100644
--- a/lbuiltin.c
+++ b/lbuiltin.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lbuiltin.c,v 1.88 1999/12/27 13:04:53 roberto Exp roberto $ 2** $Id: lbuiltin.c,v 1.89 1999/12/27 17:33:22 roberto Exp roberto $
3** Built-in functions 3** Built-in functions
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -94,7 +94,7 @@ static Hash *gettable (lua_State *L, int arg) {
94** If your system does not support "stderr", redefine this function, or 94** If your system does not support "stderr", redefine this function, or
95** redefine _ERRORMESSAGE so that it won't need _ALERT. 95** redefine _ERRORMESSAGE so that it won't need _ALERT.
96*/ 96*/
97void luaB__alert (lua_State *L) { 97void luaB__ALERT (lua_State *L) {
98 fputs(luaL_check_string(L, 1), stderr); 98 fputs(luaL_check_string(L, 1), stderr);
99} 99}
100 100
@@ -609,7 +609,7 @@ void luaB_sort (lua_State *L) {
609 609
610 610
611static const struct luaL_reg builtin_funcs[] = { 611static const struct luaL_reg builtin_funcs[] = {
612 {"_ALERT", luaB__alert}, 612 {"_ALERT", luaB__ALERT},
613 {"_ERRORMESSAGE", luaB__ERRORMESSAGE}, 613 {"_ERRORMESSAGE", luaB__ERRORMESSAGE},
614 {"call", luaB_call}, 614 {"call", luaB_call},
615 {"collectgarbage", luaB_collectgarbage}, 615 {"collectgarbage", luaB_collectgarbage},