]> git.pld-linux.org Git - packages/bash.git/blob - bash-compat.patch
- up to 4.3 (pl.po looks up to date, so disable patch)
[packages/bash.git] / bash-compat.patch
1 --- bash-2.04/parse.y.compat    Wed Mar 29 23:31:47 2000
2 +++ bash-2.04/parse.y   Wed Mar 29 23:33:11 2000
3 @@ -275,7 +275,9 @@
4                         }
5         ;
6  
7 -word_list:     WORD
8 +word_list:
9 +                       { $$ = (WORD_LIST *)NULL; }
10 +       |       WORD
11                         { $$ = make_word_list ($1, (WORD_LIST *)NULL); }
12         |       word_list WORD
13                         { $$ = make_word_list ($2, $1); }
This page took 0.052225 seconds and 3 git commands to generate.