]> git.pld-linux.org Git - packages/bash.git/blame - bash-compat.patch
- up to 4.0.33
[packages/bash.git] / bash-compat.patch
CommitLineData
35373510 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.044613 seconds and 4 git commands to generate.