aboutsummaryrefslogtreecommitdiff
path: root/lbuiltin.c
diff options
context:
space:
mode:
Diffstat (limited to 'lbuiltin.c')
-rw-r--r--lbuiltin.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lbuiltin.c b/lbuiltin.c
index cd83b732..d466c8fc 100644
--- a/lbuiltin.c
+++ b/lbuiltin.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lbuiltin.c,v 1.75 1999/11/22 17:39:51 roberto Exp roberto $ 2** $Id: lbuiltin.c,v 1.76 1999/11/26 18:53:03 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*/
@@ -743,7 +743,7 @@ static void testC (lua_State *L) {
743 lua_pushnumber(L, n); break; 743 lua_pushnumber(L, n); break;
744 } 744 }
745 case 'q' : { int n1=getnum(L, s); int n2=getnum(L, s); 745 case 'q' : { int n1=getnum(L, s); int n2=getnum(L, s);
746 lua_pushnumber(L, lua_equalobj(L, reg[n1], reg[n2])); 746 lua_pushnumber(L, lua_equal(L, reg[n1], reg[n2]));
747 break; 747 break;
748 } 748 }
749 default: luaL_verror(L, "unknown command in `testC': %c", *(s-1)); 749 default: luaL_verror(L, "unknown command in `testC': %c", *(s-1));