aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>1997-02-13 14:18:39 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>1997-02-13 14:18:39 -0200
commit0b110f7922b2e5c066f3b10f50e4d1079ccd7f93 (patch)
tree8b350c81cd320990734f103dada745133197c501
parent205ee1ec84c0f0e9c2df923fdcfa29207e8e72b3 (diff)
downloadlua-0b110f7922b2e5c066f3b10f50e4d1079ccd7f93.tar.gz
lua-0b110f7922b2e5c066f3b10f50e4d1079ccd7f93.tar.bz2
lua-0b110f7922b2e5c066f3b10f50e4d1079ccd7f93.zip
small syntax error (yacc does not complain, but bison does).
-rw-r--r--lua.stx4
1 files changed, 2 insertions, 2 deletions
diff --git a/lua.stx b/lua.stx
index 61939628..d803d4ba 100644
--- a/lua.stx
+++ b/lua.stx
@@ -1,6 +1,6 @@
1%{ 1%{
2 2
3char *rcs_luastx = "$Id: lua.stx,v 3.42 1997/01/15 16:11:37 roberto Exp roberto $"; 3char *rcs_luastx = "$Id: lua.stx,v 3.43 1997/01/31 14:27:11 roberto Exp roberto $";
4 4
5#include <stdio.h> 5#include <stdio.h>
6#include <stdlib.h> 6#include <stdlib.h>
@@ -459,7 +459,7 @@ void lua_parse (TFunc *tf)
459 459
460%% /* beginning of rules section */ 460%% /* beginning of rules section */
461 461
462chunk : chunklist ret 462chunk : chunklist ret ;
463 463
464chunklist : /* empty */ 464chunklist : /* empty */
465 | chunklist stat sc 465 | chunklist stat sc