Fix bison input for current build tools, otherwise bison or the compiler
will abort the build. (by Andreas)
This commit is contained in:
parent
4a02013767
commit
03e3d184b2
1 changed files with 6 additions and 6 deletions
|
@ -436,12 +436,12 @@ term:
|
||||||
;
|
;
|
||||||
|
|
||||||
break_command:
|
break_command:
|
||||||
QUITBIRD { $$ = F_QUITBIRD }
|
QUITBIRD { $$ = F_QUITBIRD; }
|
||||||
| ACCEPT { $$ = F_ACCEPT }
|
| ACCEPT { $$ = F_ACCEPT; }
|
||||||
| REJECT { $$ = F_REJECT }
|
| REJECT { $$ = F_REJECT; }
|
||||||
| ERROR { $$ = F_ERROR }
|
| ERROR { $$ = F_ERROR; }
|
||||||
| PRINT { $$ = F_NOP }
|
| PRINT { $$ = F_NOP; }
|
||||||
| PRINTN { $$ = F_NONL }
|
| PRINTN { $$ = F_NONL; }
|
||||||
;
|
;
|
||||||
|
|
||||||
print_one:
|
print_one:
|
||||||
|
|
Loading…
Reference in a new issue