summaryrefslogtreecommitdiff
path: root/shells/bash
diff options
context:
space:
mode:
authorDavid E. O'Brien <obrien@FreeBSD.org>2002-09-09 01:19:52 +0000
committerDavid E. O'Brien <obrien@FreeBSD.org>2002-09-09 01:19:52 +0000
commitce9d222b68bbc2c4b6897648f6c4dfcd6f0d4e90 (patch)
tree699cbc592a36ddf5e94e6c02ded3c64a79cc7b2a /shells/bash
parentFix plist (diff)
"In certain cases, Bash appends a space instead of a slash to a directory name
relative to the current directory when performing command name completion. This affects partial completion of intermediate directory names." Fix this. Bash PR: http://mail.gnu.org/pipermail/bug-bash/2002-July/004789.html Obtained from: http://www.geocrawler.com/mail/msg.php3?msg_id=9514404&list=342
Notes
Notes: svn path=/head/; revision=65876
Diffstat (limited to 'shells/bash')
-rw-r--r--shells/bash/files/patch-bashline.c42
1 files changed, 34 insertions, 8 deletions
diff --git a/shells/bash/files/patch-bashline.c b/shells/bash/files/patch-bashline.c
index ba47a7d17073..dc6828a8e803 100644
--- a/shells/bash/files/patch-bashline.c
+++ b/shells/bash/files/patch-bashline.c
@@ -1,6 +1,32 @@
---- bashline.c.orig Wed May 8 04:52:42 2002
-+++ bashline.c Wed Jul 24 05:54:07 2002
-@@ -1873,10 +1873,6 @@
+--- bashline.c.deo Tue May 7 12:52:42 2002
++++ bashline.c Sun Sep 8 18:17:30 2002
+@@ -1044,6 +1044,7 @@
+ }
+ else
+ {
++#define CMD_IS_DIR(x) (absolute_pathname(x) == 0 && *(x) != '~' && test_for_directory (x))
+ matches = rl_completion_matches (text, command_word_completion_function);
+ /* If we are attempting command completion and nothing matches, we
+ do not want readline to perform filename completion for us. We
+@@ -1052,7 +1053,7 @@
+ filenames and leave directories in the match list. */
+ if (matches == (char **)NULL)
+ rl_ignore_some_completions_function = bash_ignore_filenames;
+- else if (matches[1] == 0 && *matches[0] != '/')
++ else if (matches[1] == 0 && CMD_IS_DIR(matches[0]))
+ /* Turn off rl_filename_completion_desired so readline doesn't
+ append a slash if there is a directory with the same name
+ in the current directory, or other filename-specific things.
+@@ -1061,7 +1062,7 @@
+ looking in the current directory anyway, so there's no
+ conflict. */
+ rl_filename_completion_desired = 0;
+- else if (matches[0] && matches[1] && STREQ (matches[0], matches[1]) && *matches[0] != '/')
++ else if (matches[0] && matches[1] && STREQ (matches[0], matches[1]) && CMD_IS_DIR (matches[0]))
+ /* There are multiple instances of the same match (duplicate
+ completions haven't yet been removed). In this case, all of
+ the matches will be the same, and the duplicate removal code
+@@ -1873,10 +1874,6 @@
}
}
@@ -11,7 +37,7 @@
/* If FIGNORE is set, then don't match files with the given suffixes when
completing filenames. If only one of the possibilities has an acceptable
suffix, delete the others, else just return and let the completer
-@@ -1901,10 +1897,15 @@
+@@ -1901,10 +1898,15 @@
{
char **newnames;
int idx, nidx;
@@ -29,7 +55,7 @@
/* If there is only one completion, see if it is acceptable. If it is
not, free it up. In any case, short-circuit and return. This is a
-@@ -1912,13 +1913,12 @@
+@@ -1912,13 +1914,12 @@
if there is only one completion; it is the completion itself. */
if (names[1] == (char *)0)
{
@@ -49,7 +75,7 @@
return;
}
-@@ -1927,10 +1927,11 @@
+@@ -1927,10 +1928,11 @@
for (nidx = 1; names[nidx]; nidx++)
;
newnames = strvec_create (nidx + 1);
@@ -65,7 +91,7 @@
newnames[0] = names[0];
for (idx = nidx = 1; names[idx]; idx++)
-@@ -1938,11 +1939,10 @@
+@@ -1938,11 +1940,10 @@
if ((*name_func) (names[idx]))
newnames[nidx++] = names[idx];
else
@@ -81,7 +107,7 @@
}
newnames[nidx] = (char *)NULL;
-@@ -1950,21 +1950,23 @@
+@@ -1950,21 +1951,23 @@
/* If none are acceptable then let the completer handle it. */
if (nidx == 1)
{