http://austingroupbugs.net/view.php?id=737
Shell Grammar Rules for
Desired Action
On page 2350, lines 74834-74838, change
Shell Grammar Rules for
compound_list duplicate the definition of linebreaklinebreak : newline_list
| /* empty */
;which results in four grammar rules for compound_list instead of two.Desired Action
On page 2350, lines 74834-74838, change
compound_list : term
| newline_list term
| term separator
| newline_list term separator
;tocompound_list : linebreak term
| linebreak term separator
;