diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1997-02-13 14:18:39 -0200 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1997-02-13 14:18:39 -0200 |
commit | 0b110f7922b2e5c066f3b10f50e4d1079ccd7f93 (patch) | |
tree | 8b350c81cd320990734f103dada745133197c501 | |
parent | 205ee1ec84c0f0e9c2df923fdcfa29207e8e72b3 (diff) | |
download | lua-0b110f7922b2e5c066f3b10f50e4d1079ccd7f93.tar.gz lua-0b110f7922b2e5c066f3b10f50e4d1079ccd7f93.tar.bz2 lua-0b110f7922b2e5c066f3b10f50e4d1079ccd7f93.zip |
small syntax error (yacc does not complain, but bison does).
-rw-r--r-- | lua.stx | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,6 +1,6 @@ | |||
1 | %{ | 1 | %{ |
2 | 2 | ||
3 | char *rcs_luastx = "$Id: lua.stx,v 3.42 1997/01/15 16:11:37 roberto Exp roberto $"; | 3 | char *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 | ||
462 | chunk : chunklist ret | 462 | chunk : chunklist ret ; |
463 | 463 | ||
464 | chunklist : /* empty */ | 464 | chunklist : /* empty */ |
465 | | chunklist stat sc | 465 | | chunklist stat sc |