aboutsummaryrefslogtreecommitdiff
path: root/lobject.c
diff options
context:
space:
mode:
Diffstat (limited to 'lobject.c')
-rw-r--r--lobject.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lobject.c b/lobject.c
index e2208789..5cc4c58a 100644
--- a/lobject.c
+++ b/lobject.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lobject.c,v 2.38 2010/04/13 20:48:12 roberto Exp roberto $ 2** $Id: lobject.c,v 2.39 2010/04/15 19:44:43 roberto Exp roberto $
3** Some generic functions over Lua objects 3** Some generic functions over Lua objects
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -83,7 +83,7 @@ int luaO_rawequalObj (const TValue *t1, const TValue *t2) {
83 return pvalue(t1) == pvalue(t2); 83 return pvalue(t1) == pvalue(t2);
84 case LUA_TSTRING: 84 case LUA_TSTRING:
85 return rawtsvalue(t1) == rawtsvalue(t2); 85 return rawtsvalue(t1) == rawtsvalue(t2);
86 case LUA_TCFP: 86 case LUA_TLCF:
87 return fvalue(t1) == fvalue(t2); 87 return fvalue(t1) == fvalue(t2);
88 default: 88 default:
89 lua_assert(iscollectable(t1)); 89 lua_assert(iscollectable(t1));