summaryrefslogtreecommitdiff
path: root/contrib/mount
diff options
context:
space:
mode:
authorCrestez Dan Leonard <cdleonard@gmail.com>2010-02-08 08:35:46 +0200
committerCrestez Dan Leonard <cdleonard@gmail.com>2010-02-09 15:28:28 +0200
commitc0b77a03f55f06fc9a00b766307335574cc79293 (patch)
tree36b17f2331c132204e4a29133f7dce673384dc87 /contrib/mount
parent6e0dc07ee25ad9ab617ee8f5d2e861c8ef29d8bd (diff)
downloadbash-completion-c0b77a03f55f06fc9a00b766307335574cc79293.tar.gz
(mount) Make it clear that $' strings are not supported
Diffstat (limited to 'contrib/mount')
-rw-r--r--contrib/mount12
1 files changed, 2 insertions, 10 deletions
diff --git a/contrib/mount b/contrib/mount
index bfa2a273..6c94e3f9 100644
--- a/contrib/mount
+++ b/contrib/mount
@@ -26,19 +26,11 @@ _reply_compgen_array()
# We also have to add another round of escaping to $cur.
local ecur="$cur"
ecur="${ecur//\\/\\\\}"
- ecur="${ecur/#$\'/\$\'}"
# Actually generate completions.
- local oldifs="$IFS"
+ local oldifs=$IFS
IFS=$'\n' eval 'COMPREPLY=(`compgen -W "$wlist" -- "${ecur}"`)'
- IFS="$oldifs"
-
- # Strip starting $' in reply if present in cur.
- # This is necesarry because readline interprets everything after ' as a
- # separate word for completion.
- if [[ $cur == $\'* ]]; then #'
- COMPREPLY=( "${COMPREPLY[@]/#$\'}" )
- fi
+ IFS=$oldifs
}
# Complete linux fstab entries.