diff options
author | Martin Mares <mj@ucw.cz> | 2004-05-31 17:44:39 +0000 |
---|---|---|
committer | Martin Mares <mj@ucw.cz> | 2004-05-31 17:44:39 +0000 |
commit | 03e3d184b2d8fac4c82408b1ac1738cb7af5680e (patch) | |
tree | a87f61774aa3903f1f596e1c6fab5018cc030a8d /filter/config.Y | |
parent | 4a02013767ab05b9cf7567c09e5fad59c9bd1c10 (diff) |
Fix bison input for current build tools, otherwise bison or the compiler
will abort the build.
(by Andreas)
Diffstat (limited to 'filter/config.Y')
-rw-r--r-- | filter/config.Y | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/filter/config.Y b/filter/config.Y index ce11e45d..d4bf44cc 100644 --- a/filter/config.Y +++ b/filter/config.Y @@ -436,12 +436,12 @@ term: ; break_command: - QUITBIRD { $$ = F_QUITBIRD } - | ACCEPT { $$ = F_ACCEPT } - | REJECT { $$ = F_REJECT } - | ERROR { $$ = F_ERROR } - | PRINT { $$ = F_NOP } - | PRINTN { $$ = F_NONL } + QUITBIRD { $$ = F_QUITBIRD; } + | ACCEPT { $$ = F_ACCEPT; } + | REJECT { $$ = F_REJECT; } + | ERROR { $$ = F_ERROR; } + | PRINT { $$ = F_NOP; } + | PRINTN { $$ = F_NONL; } ; print_one: |