summaryrefslogtreecommitdiff
path: root/ltable.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>1997-09-26 13:46:20 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>1997-09-26 13:46:20 -0300
commiteb617df2d87f8476e722ade7319998d7912a6edf (patch)
tree25d2635a076263518cdbb7da1693b674e0a4541e /ltable.h
parenta580480b07cdf7201306b246deeb2fe84f2c25a9 (diff)
downloadlua-eb617df2d87f8476e722ade7319998d7912a6edf.tar.gz
lua-eb617df2d87f8476e722ade7319998d7912a6edf.tar.bz2
lua-eb617df2d87f8476e722ade7319998d7912a6edf.zip
better way to traverse GCnode lists.
Diffstat (limited to 'ltable.h')
-rw-r--r--ltable.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/ltable.h b/ltable.h
index 2633a63f..ff57591e 100644
--- a/ltable.h
+++ b/ltable.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: $ 2** $Id: ltable.h,v 1.1 1997/09/16 19:25:59 roberto Exp roberto $
3** Lua tables (hash) 3** Lua tables (hash)
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -10,7 +10,7 @@
10#include "lobject.h" 10#include "lobject.h"
11 11
12 12
13extern Hash *luaH_root; 13extern GCnode luaH_root;
14 14
15 15
16#define node(t,i) (&(t)->node[i]) 16#define node(t,i) (&(t)->node[i])