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 d466c8fc..c9fefa35 100644
--- a/lbuiltin.c
+++ b/lbuiltin.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lbuiltin.c,v 1.76 1999/11/26 18:53:03 roberto Exp roberto $ 2** $Id: lbuiltin.c,v 1.77 1999/11/29 19:11:36 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*/
@@ -187,7 +187,7 @@ static void luaB_rawgetglobal (lua_State *L) {
187 lua_pushobject(L, lua_rawgetglobal(L, luaL_check_string(L, 1))); 187 lua_pushobject(L, lua_rawgetglobal(L, luaL_check_string(L, 1)));
188} 188}
189 189
190static void luaB_luatag (lua_State *L) { 190static void luaB_tag (lua_State *L) {
191 lua_pushnumber(L, lua_tag(L, lua_getparam(L, 1))); 191 lua_pushnumber(L, lua_tag(L, lua_getparam(L, 1)));
192} 192}
193 193
@@ -789,7 +789,7 @@ static const struct luaL_reg builtin_funcs[] = {
789 {"setglobal", luaB_setglobal}, 789 {"setglobal", luaB_setglobal},
790 {"settag", luaB_settag}, 790 {"settag", luaB_settag},
791 {"settagmethod", luaB_settagmethod}, 791 {"settagmethod", luaB_settagmethod},
792 {"tag", luaB_luatag}, 792 {"tag", luaB_tag},
793 {"tonumber", luaB_tonumber}, 793 {"tonumber", luaB_tonumber},
794 {"tostring", luaB_tostring}, 794 {"tostring", luaB_tostring},
795 {"type", luaB_type}, 795 {"type", luaB_type},