summaryrefslogtreecommitdiff
path: root/llex.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2000-03-24 14:26:08 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2000-03-24 14:26:08 -0300
commit213e9febc889d5aaae8ef0e8b777cdb4889e30c1 (patch)
treea3b8483f7ce4094e8df3071cb774ef1ee70cc474 /llex.h
parent47b4bf59649834c611571d7ac1482eac55687ce5 (diff)
downloadlua-github-213e9febc889d5aaae8ef0e8b777cdb4889e30c1.tar.gz
limits now are in `llims.n'
Diffstat (limited to 'llex.h')
-rw-r--r--llex.h6
1 files changed, 1 insertions, 5 deletions
diff --git a/llex.h b/llex.h
index 26ab95dd..87e6511a 100644
--- a/llex.h
+++ b/llex.h
@@ -1,5 +1,5 @@
/*
-** $Id: llex.h,v 1.19 2000/03/03 14:58:26 roberto Exp roberto $
+** $Id: llex.h,v 1.20 2000/03/10 18:37:44 roberto Exp roberto $
** Lexical Analyzer
** See Copyright Notice in lua.h
*/
@@ -35,10 +35,6 @@ enum RESERVED {
#define NUM_RESERVED ((int)(TK_WHILE-FIRST_RESERVED+1))
-#ifndef MAX_IFS
-#define MAX_IFS 5 /* arbitrary limit */
-#endif
-
/* `ifState' keeps the state of each nested $if the lexical is dealing with. */
struct ifState {