File tree 2 files changed +6
-2
lines changed
2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change 25
25
regexp `^#define[ ]*PATCHLEVEL', since that's what support/mkversion.sh
26
26
looks for to find the patch level (for the sccs version string). */
27
27
28
- #define PATCHLEVEL 10
28
+ #define PATCHLEVEL 11
29
29
30
30
#endif /* _PATCHLEVEL_H_ */
Original file line number Diff line number Diff line change @@ -3625,7 +3625,9 @@ remove_backslashes (string)
3625
3625
this case, we quote the string specially for the globbing code. If
3626
3626
SPECIAL is 2, this is an rhs argument for the =~ operator, and should
3627
3627
be quoted appropriately for regcomp/regexec. The caller is responsible
3628
- for removing the backslashes if the unquoted word is needed later. */
3628
+ for removing the backslashes if the unquoted word is needed later. In
3629
+ any case, since we don't perform word splitting, we need to do quoted
3630
+ null character removal. */
3629
3631
char *
3630
3632
cond_expand_word (w , special )
3631
3633
WORD_DESC * w ;
@@ -3646,6 +3648,8 @@ cond_expand_word (w, special)
3646
3648
{
3647
3649
if (special == 0 ) /* LHS */
3648
3650
{
3651
+ if (l -> word )
3652
+ word_list_remove_quoted_nulls (l );
3649
3653
dequote_list (l );
3650
3654
r = string_list (l );
3651
3655
}
You can’t perform that action at this time.
0 commit comments