summaryrefslogtreecommitdiff
path: root/bash/bash-2.05b/bash205b-003.patch
diff options
context:
space:
mode:
authorChris Larson <clarson@kergoth.com>2004-12-09 09:47:41 +0000
committerChris Larson <clarson@kergoth.com>2004-12-09 09:47:41 +0000
commit2c5b8ec6d95cf68650265941530e5ce38c8dd6d9 (patch)
treebf879bea7ef8517ba8c3d1286ef300401d3d484c /bash/bash-2.05b/bash205b-003.patch
parent101e2f1623def0a355d20aacb8bd93810703e834 (diff)
Merge oe-devel@oe-devel.bkbits.net:openembedded
into hyperion.kergoth.com:/home/kergoth/code/openembedded 2004/12/09 03:39:39-06:00 kergoth.com!kergoth Break people's builds again.. this time moving the packages into a packages/ subdir to clean things up a bit. BKrev: 41b81f3dvlp3rU7_8MUXLcI8LDdDoA
Diffstat (limited to 'bash/bash-2.05b/bash205b-003.patch')
-rw-r--r--bash/bash-2.05b/bash205b-003.patch39
1 files changed, 0 insertions, 39 deletions
diff --git a/bash/bash-2.05b/bash205b-003.patch b/bash/bash-2.05b/bash205b-003.patch
deleted file mode 100644
index 020248b873..0000000000
--- a/bash/bash-2.05b/bash205b-003.patch
+++ /dev/null
@@ -1,39 +0,0 @@
-*** ../bash-2.05b/bashline.c Tue May 7 15:52:42 2002
---- bashline.c Sat Aug 3 11:40:16 2002
-***************
-*** 1045,1049 ****
---- 1045,1052 ----
- 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
-***************
-*** 1053,1057 ****
- if (matches == (char **)NULL)
- rl_ignore_some_completions_function = bash_ignore_filenames;
-! else if (matches[1] == 0 && *matches[0] != '/')
- /* Turn off rl_filename_completion_desired so readline doesn't
- append a slash if there is a directory with the same name
---- 1056,1060 ----
- if (matches == (char **)NULL)
- rl_ignore_some_completions_function = bash_ignore_filenames;
-! 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
-***************
-*** 1062,1066 ****
- conflict. */
- rl_filename_completion_desired = 0;
-! else if (matches[0] && matches[1] && STREQ (matches[0], matches[1]) && *matches[0] != '/')
- /* There are multiple instances of the same match (duplicate
- completions haven't yet been removed). In this case, all of
---- 1065,1069 ----
- conflict. */
- rl_filename_completion_desired = 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