diff options
| author | Ramkumar Ramachandra <artagnon@gmail.com> | 2013-07-04 08:41:26 -0400 |
|---|---|---|
| committer | Arnaldo Carvalho de Melo <acme@redhat.com> | 2013-10-09 10:11:48 -0400 |
| commit | 30079d1d5ebcb8d706c6e05cacebb7facc60cd95 (patch) | |
| tree | a610c1ca1da9fee241e8b0a46fbc05d5f4a8898c /tools/perf/bash_completion | |
| parent | 1ba6e01782fd2a94481e18b91b363636f8171565 (diff) | |
perf completion: Update __ltrim_colon_completions
The function is taken from the bash-completion package; update it to use
the latest version where colon_word doesn't miss quoting.
Signed-off-by: Ramkumar Ramachandra <artagnon@gmail.com>
Cc: Frederic Weisbecker <fweisbec@gmail.com>
Link: http://lkml.kernel.org/r/1372941691-14684-3-git-send-email-artagnon@gmail.com
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/perf/bash_completion')
| -rw-r--r-- | tools/perf/bash_completion | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/perf/bash_completion b/tools/perf/bash_completion index 50540cfe3d18..b0cdd12bd5e4 100644 --- a/tools/perf/bash_completion +++ b/tools/perf/bash_completion | |||
| @@ -11,7 +11,7 @@ __ltrim_colon_completions() | |||
| 11 | { | 11 | { |
| 12 | if [[ "$1" == *:* && "$COMP_WORDBREAKS" == *:* ]]; then | 12 | if [[ "$1" == *:* && "$COMP_WORDBREAKS" == *:* ]]; then |
| 13 | # Remove colon-word prefix from COMPREPLY items | 13 | # Remove colon-word prefix from COMPREPLY items |
| 14 | local colon_word=${1%${1##*:}} | 14 | local colon_word=${1%"${1##*:}"} |
| 15 | local i=${#COMPREPLY[*]} | 15 | local i=${#COMPREPLY[*]} |
| 16 | while [[ $((--i)) -ge 0 ]]; do | 16 | while [[ $((--i)) -ge 0 ]]; do |
| 17 | COMPREPLY[$i]=${COMPREPLY[$i]#"$colon_word"} | 17 | COMPREPLY[$i]=${COMPREPLY[$i]#"$colon_word"} |
