]> git.pld-linux.org Git - packages/bash.git/blame - bash30-014
- rel 9; read system /etc/bashrc
[packages/bash.git] / bash30-014
CommitLineData
4e9fe84f
JB
1 BASH PATCH REPORT
2 =================
3
4Bash-Release: 3.0
5Patch-ID: bash30-014
6
7Bug-Reported-by: agriffis@gentoo.org
8Bug-Reference-ID: <20040929024759.A437FEB1E0@piment.flatmonk.org>
9Bug-Reference-URL: http://lists.gnu.org/archive/html/bug-bash/2004-09/msg00250.html
10
11Bug-Description:
12
13 #
14 # BROKEN case: variable with braces inside quotes
15 #
16
17 $ D=W
18 $ echo "${D}"{illy,onka} => W{illy,onka}
19
20Patch:
21
22*** ../bash-3.0-patched/braces.c Wed Sep 8 11:07:53 2004
23--- braces.c Fri Sep 17 18:42:36 2004
24***************
25*** 403,407 ****
26 pass_next = 1;
27 i++;
28! level++;
29 continue;
30 }
31--- 403,408 ----
32 pass_next = 1;
33 i++;
34! if (quoted == 0)
35! level++;
36 continue;
37 }
38*** ../bash-3.0-patched/patchlevel.h Wed Aug 22 08:05:39 2001
39--- patchlevel.h Thu Sep 2 15:04:32 2004
40***************
41*** 26,30 ****
42 looks for to find the patch level (for the sccs version string). */
43
44! #define PATCHLEVEL 13
45
46 #endif /* _PATCHLEVEL_H_ */
47--- 26,30 ----
48 looks for to find the patch level (for the sccs version string). */
49
50! #define PATCHLEVEL 14
51
52 #endif /* _PATCHLEVEL_H_ */
This page took 0.030088 seconds and 4 git commands to generate.