1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
|
BASH PATCH REPORT
=================
Bash-Release: 4.0
Patch-ID: bash40-035
Bug-Reported-by: Freddy Vulto <fvulto@gmail.com>
Bug-Reference-ID: <e9c463930909171341p7cbe6e43pa3788ebbe3adec4d@mail.gmail.com>
Bug-Reference-URL: http://lists.gnu.org/archive/html/bug-bash/2009-09/msg00044.html
Bug-Description:
Bash-4.0 incorrectly treated single and double quotes as delimiters rather
than introducing quoted strings when splitting the line into words for
programmable completion functions.
Patch:
*** ../bash-4.0-patched/pcomplete.c 2009-03-08 21:24:31.000000000 -0400
--- pcomplete.c 2009-09-26 16:30:16.000000000 -0400
***************
*** 1176,1186 ****
WORD_LIST *ret;
char *delims;
! #if 0
! delims = "()<>;&| \t\n"; /* shell metacharacters break words */
! #else
! delims = rl_completer_word_break_characters;
! #endif
ret = split_at_delims (line, llen, delims, sentinel, nwp, cwp);
return (ret);
}
--- 1176,1188 ----
WORD_LIST *ret;
char *delims;
+ int i, j;
! delims = xmalloc (strlen (rl_completer_word_break_characters) + 1);
! for (i = j = 0; rl_completer_word_break_characters[i]; i++)
! if (rl_completer_word_break_characters[i] != '\'' && rl_completer_word_break_characters[i] != '"')
! delims[j++] = rl_completer_word_break_characters[i];
! delims[j] = '\0';
ret = split_at_delims (line, llen, delims, sentinel, nwp, cwp);
+ free (delims);
return (ret);
}
*** ../bash-4.0/patchlevel.h 2009-01-04 14:32:40.000000000 -0500
--- patchlevel.h 2009-02-22 16:11:31.000000000 -0500
***************
*** 26,30 ****
looks for to find the patch level (for the sccs version string). */
! #define PATCHLEVEL 34
#endif /* _PATCHLEVEL_H_ */
--- 26,30 ----
looks for to find the patch level (for the sccs version string). */
! #define PATCHLEVEL 35
#endif /* _PATCHLEVEL_H_ */
|