Bash-4.3 patch 15
This commit is contained in:
@@ -4167,8 +4167,15 @@ bash_directory_completion_matches (text)
|
||||
int qc;
|
||||
|
||||
qc = rl_dispatching ? rl_completion_quote_character : 0;
|
||||
/* If rl_completion_found_quote != 0, rl_completion_matches will call the
|
||||
filename dequoting function, causing the directory name to be dequoted
|
||||
twice. */
|
||||
if (rl_dispatching && rl_completion_found_quote == 0)
|
||||
dfn = bash_dequote_filename ((char *)text, qc);
|
||||
else
|
||||
dfn = (char *)text;
|
||||
m1 = rl_completion_matches (dfn, rl_filename_completion_function);
|
||||
if (dfn != text)
|
||||
free (dfn);
|
||||
|
||||
if (m1 == 0 || m1[0] == 0)
|
||||
|
||||
@@ -25,6 +25,6 @@
|
||||
regexp `^#define[ ]*PATCHLEVEL', since that's what support/mkversion.sh
|
||||
looks for to find the patch level (for the sccs version string). */
|
||||
|
||||
#define PATCHLEVEL 14
|
||||
#define PATCHLEVEL 15
|
||||
|
||||
#endif /* _PATCHLEVEL_H_ */
|
||||
|
||||
Reference in New Issue
Block a user