From 0b551a24f81153f58bee3c528515e54378c0831a Mon Sep 17 00:00:00 2001
From: Roberto Ierusalimschy <roberto@inf.puc-rio.br>
Date: Thu, 25 Oct 2001 17:12:21 -0200
Subject: `Hash' -> `Table'

---
 lparser.h | 4 ++--
 lstate.h  | 8 ++++----
 2 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/lparser.h b/lparser.h
index 2355b35d..724230a8 100644
--- a/lparser.h
+++ b/lparser.h
@@ -1,5 +1,5 @@
 /*
-** $Id: lparser.h,v 1.34 2001/08/27 15:16:28 roberto Exp $
+** $Id: lparser.h,v 1.35 2001/09/07 17:39:10 roberto Exp $
 ** Lua Parser
 ** See Copyright Notice in lua.h
 */
@@ -68,7 +68,7 @@ typedef struct FuncState {
   int jlt;  /* list of jumps to `lasttarget' */
   int freereg;  /* first free register */
   int nk;  /* number of elements in `k' */
-  Hash *h;  /* table to find (and reuse) elements in `k' */
+  Table *h;  /* table to find (and reuse) elements in `k' */
   int np;  /* number of elements in `p' */
   int nlineinfo;  /* number of elements in `lineinfo' */
   int nlocvars;  /* number of elements in `locvars' */
diff --git a/lstate.h b/lstate.h
index aa29c3bd..4339d73d 100644
--- a/lstate.h
+++ b/lstate.h
@@ -1,5 +1,5 @@
 /*
-** $Id: lstate.h,v 1.60 2001/10/02 16:43:29 roberto Exp $
+** $Id: lstate.h,v 1.61 2001/10/17 21:12:57 roberto Exp $
 ** Global State
 ** See Copyright Notice in lua.h
 */
@@ -57,7 +57,7 @@ typedef struct global_State {
   void *Mbuffer;  /* global buffer */
   size_t Mbuffsize;  /* size of Mbuffer */
   stringtable strt;  /* hash table for strings */
-  Hash *type2tag;  /* hash table from type names to tags */
+  Table *type2tag;  /* hash table from type names to tags */
   TObject registry;  /* registry table */
   struct TM *TMtable;  /* table for tag methods */
   int sizeTM;  /* size of TMtable */
@@ -66,7 +66,7 @@ typedef struct global_State {
   lu_mem nblocks;  /* number of `bytes' currently allocated */
   Proto *rootproto;  /* list of all prototypes */
   Closure *rootcl;  /* list of all C closures and closed Lua closures */
-  Hash *roottable;  /* list of all tables */
+  Table *roottable;  /* list of all tables */
   Udata *rootudata;   /* list of all userdata */
   UpVal *rootupval;  /* list of all up values */
 } global_State;
@@ -80,7 +80,7 @@ struct lua_State {
   StkId top;  /* first free slot in the stack */
   CallInfo *ci;  /* call info for current function */
   StkId stack_last;  /* last free slot in the stack */
-  Hash *gt;  /* table for globals */
+  Table *gt;  /* table for globals */
   global_State *G;
   StkId stack;  /* stack base */
   int stacksize;
-- 
cgit v1.2.3-55-g6feb