summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2001-08-10 17:53:03 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2001-08-10 17:53:03 -0300
commitfd40af92e46dcd8b7638c4108aacb1f525e8578e (patch)
treee1097f85ecfb03bb6a4a52ce76bd837054b59cfc
parent017154370476129d7420857537603aa1d7a561ca (diff)
downloadlua-fd40af92e46dcd8b7638c4108aacb1f525e8578e.tar.gz
lua-fd40af92e46dcd8b7638c4108aacb1f525e8578e.tar.bz2
lua-fd40af92e46dcd8b7638c4108aacb1f525e8578e.zip
the parser is not LL(1)
-rw-r--r--lparser.c4
-rw-r--r--lparser.h4
2 files changed, 4 insertions, 4 deletions
diff --git a/lparser.c b/lparser.c
index 975c9b8f..e5c38b6c 100644
--- a/lparser.c
+++ b/lparser.c
@@ -1,6 +1,6 @@
1/* 1/*
2** $Id: lparser.c,v 1.151 2001/06/28 14:57:17 roberto Exp roberto $ 2** $Id: lparser.c,v 1.152 2001/07/10 20:02:22 roberto Exp roberto $
3** LL(1) Parser and code generator for Lua 3** Lua Parser
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
6 6
diff --git a/lparser.h b/lparser.h
index 63bac8f3..220ae9e7 100644
--- a/lparser.h
+++ b/lparser.h
@@ -1,6 +1,6 @@
1/* 1/*
2** $Id: lparser.h,v 1.31 2001/06/05 18:17:01 roberto Exp roberto $ 2** $Id: lparser.h,v 1.32 2001/06/28 14:56:25 roberto Exp roberto $
3** LL(1) Parser and code generator for Lua 3** Lua Parser
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
6 6