summaryrefslogtreecommitdiffstats
path: root/lua/lobject.h
diff options
context:
space:
mode:
Diffstat (limited to 'lua/lobject.h')
-rw-r--r--lua/lobject.h7
1 files changed, 2 insertions, 5 deletions
diff --git a/lua/lobject.h b/lua/lobject.h
index ca75a02..3a630b9 100644
--- a/lua/lobject.h
+++ b/lua/lobject.h
@@ -1,5 +1,5 @@
/*
-** $Id: lobject.h,v 2.70 2012/05/11 14:10:50 roberto Exp $
+** $Id: lobject.h,v 2.71.1.1 2013/04/12 18:48:47 roberto Exp $
** Type definitions for Lua objects
** See Copyright Notice in lua.h
*/
@@ -52,8 +52,7 @@
#define LUA_TCCL (LUA_TFUNCTION | (2 << 4)) /* C closure */
-/*
-** LUA_TSTRING variants */
+/* Variant tags for strings */
#define LUA_TSHRSTR (LUA_TSTRING | (0 << 4)) /* short strings */
#define LUA_TLNGSTR (LUA_TSTRING | (1 << 4)) /* long strings */
@@ -188,8 +187,6 @@ typedef struct lua_TValue TValue;
#define setnvalue(obj,x) \
{ TValue *io=(obj); num_(io)=(x); settt_(io, LUA_TNUMBER); }
-#define changenvalue(o,x) check_exp(ttisnumber(o), num_(o)=(x))
-
#define setnilvalue(obj) settt_(obj, LUA_TNIL)
#define setfvalue(obj,x) \