summaryrefslogtreecommitdiff
path: root/lapi.c
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2011-05-31 15:27:56 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2011-05-31 15:27:56 -0300
commit821bd7025ea7ecf399e0b50f920a460b11c649c7 (patch)
tree98cd8aa59a2cc80b6d52b164cebcb2a46b457f4a /lapi.c
parent9b7dddad7d3f4546f838834d9674eaf0f2fca3dd (diff)
downloadlua-821bd7025ea7ecf399e0b50f920a460b11c649c7.tar.gz
lua-821bd7025ea7ecf399e0b50f920a460b11c649c7.tar.bz2
lua-821bd7025ea7ecf399e0b50f920a460b11c649c7.zip
more uniform names for 'equalobj'-related functions
Diffstat (limited to 'lapi.c')
-rw-r--r--lapi.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lapi.c b/lapi.c
index 7388db33..3e1c50d6 100644
--- a/lapi.c
+++ b/lapi.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lapi.c,v 2.145 2011/04/05 14:26:23 roberto Exp roberto $ 2** $Id: lapi.c,v 2.146 2011/05/31 18:24:36 roberto Exp roberto $
3** Lua API 3** Lua API
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -278,7 +278,7 @@ LUA_API int lua_rawequal (lua_State *L, int index1, int index2) {
278 StkId o1 = index2addr(L, index1); 278 StkId o1 = index2addr(L, index1);
279 StkId o2 = index2addr(L, index2); 279 StkId o2 = index2addr(L, index2);
280 return (o1 == luaO_nilobject || o2 == luaO_nilobject) ? 0 280 return (o1 == luaO_nilobject || o2 == luaO_nilobject) ? 0
281 : luaV_rawequalObj(o1, o2); 281 : luaV_rawequalobj(o1, o2);
282} 282}
283 283
284 284