summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAllKind <allkind@fastest.cc>2013-03-06 00:40:06 +0100
committerIgor Murzov <e-mail@date.by>2013-03-09 15:30:01 +0400
commite191799dea5b38272dba7e5efe60b3adf86311e5 (patch)
tree0167f5b7112b1c990267cec44834e65632a309dd
parent48158ee3e454fe4f6baf30bc59884962aaf3ce8e (diff)
downloadbash-completion-e191799dea5b38272dba7e5efe60b3adf86311e5.tar.gz
Fix __ltrim_colon_completions() fail on parameter (\$1) containing a glob.
-rw-r--r--bash_completion2
1 files changed, 1 insertions, 1 deletions
diff --git a/bash_completion b/bash_completion
index aa61c868..41b4bc0d 100644
--- a/bash_completion
+++ b/bash_completion
@@ -509,7 +509,7 @@ __ltrim_colon_completions()
{
if [[ "$1" == *:* && "$COMP_WORDBREAKS" == *:* ]]; then
# Remove colon-word prefix from COMPREPLY items
- local colon_word=${1%${1##*:}}
+ local colon_word=${1%"${1##*:}"}
local i=${#COMPREPLY[*]}
while [[ $((--i)) -ge 0 ]]; do
COMPREPLY[$i]=${COMPREPLY[$i]#"$colon_word"}