aboutsummaryrefslogtreecommitdiff
path: root/lobject.h
diff options
context:
space:
mode:
Diffstat (limited to 'lobject.h')
-rw-r--r--lobject.h13
1 files changed, 4 insertions, 9 deletions
diff --git a/lobject.h b/lobject.h
index 3ab75ad5..e9a20915 100644
--- a/lobject.h
+++ b/lobject.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lobject.h,v 2.79 2013/08/07 12:18:11 roberto Exp roberto $ 2** $Id: lobject.h,v 2.80 2013/08/18 16:12:18 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*/
@@ -20,13 +20,12 @@
20** Extra tags for non-values 20** Extra tags for non-values
21*/ 21*/
22#define LUA_TPROTO LUA_NUMTAGS 22#define LUA_TPROTO LUA_NUMTAGS
23#define LUA_TUPVAL (LUA_NUMTAGS+1) 23#define LUA_TDEADKEY (LUA_NUMTAGS+1)
24#define LUA_TDEADKEY (LUA_NUMTAGS+2)
25 24
26/* 25/*
27** number of all possible tags (including LUA_TNONE but excluding DEADKEY) 26** number of all possible tags (including LUA_TNONE but excluding DEADKEY)
28*/ 27*/
29#define LUA_TOTALTAGS (LUA_TUPVAL+2) 28#define LUA_TOTALTAGS (LUA_TPROTO + 2)
30 29
31 30
32/* 31/*
@@ -392,11 +391,7 @@ typedef struct Proto {
392/* 391/*
393** Lua Upvalues 392** Lua Upvalues
394*/ 393*/
395typedef struct UpVal { 394typedef struct UpVal UpVal;
396 CommonHeader;
397 TValue *v; /* points to stack or to its own value */
398 TValue value; /* the value (when closed) */
399} UpVal;
400 395
401 396
402/* 397/*