summaryrefslogtreecommitdiff
path: root/lobject.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2011-05-31 15:24:36 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2011-05-31 15:24:36 -0300
commit9b7dddad7d3f4546f838834d9674eaf0f2fca3dd (patch)
treecf0f283b5177d481023d0724d1c08a95d7482005 /lobject.h
parent3f04a9f2c07bc06dddbc473178b314f1fd686701 (diff)
downloadlua-9b7dddad7d3f4546f838834d9674eaf0f2fca3dd.tar.gz
lua-9b7dddad7d3f4546f838834d9674eaf0f2fca3dd.tar.bz2
lua-9b7dddad7d3f4546f838834d9674eaf0f2fca3dd.zip
no need for two different implementations for equality (one raw and
one with metamethods)
Diffstat (limited to 'lobject.h')
-rw-r--r--lobject.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lobject.h b/lobject.h
index 79617c5f..8c27c522 100644
--- a/lobject.h
+++ b/lobject.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lobject.h,v 2.53 2011/05/05 19:43:14 roberto Exp roberto $ 2** $Id: lobject.h,v 2.54 2011/05/26 17:12:31 roberto Exp roberto $
3** Type definitions for Lua objects 3** Type definitions for Lua objects
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -431,11 +431,11 @@ typedef struct Table {
431 431
432LUAI_DDEC const TValue luaO_nilobject_; 432LUAI_DDEC const TValue luaO_nilobject_;
433 433
434
434LUAI_FUNC int luaO_int2fb (unsigned int x); 435LUAI_FUNC int luaO_int2fb (unsigned int x);
435LUAI_FUNC int luaO_fb2int (int x); 436LUAI_FUNC int luaO_fb2int (int x);
436LUAI_FUNC int luaO_ceillog2 (unsigned int x); 437LUAI_FUNC int luaO_ceillog2 (unsigned int x);
437LUAI_FUNC lua_Number luaO_arith (int op, lua_Number v1, lua_Number v2); 438LUAI_FUNC lua_Number luaO_arith (int op, lua_Number v1, lua_Number v2);
438LUAI_FUNC int luaO_rawequalObj (const TValue *t1, const TValue *t2);
439LUAI_FUNC int luaO_str2d (const char *s, size_t len, lua_Number *result); 439LUAI_FUNC int luaO_str2d (const char *s, size_t len, lua_Number *result);
440LUAI_FUNC int luaO_hexavalue (int c); 440LUAI_FUNC int luaO_hexavalue (int c);
441LUAI_FUNC const char *luaO_pushvfstring (lua_State *L, const char *fmt, 441LUAI_FUNC const char *luaO_pushvfstring (lua_State *L, const char *fmt,