aboutsummaryrefslogtreecommitdiff
path: root/bash/bash_completion.d/td.bash
diff options
context:
space:
mode:
Diffstat (limited to 'bash/bash_completion.d/td.bash')
-rw-r--r--bash/bash_completion.d/td.bash10
1 files changed, 2 insertions, 8 deletions
diff --git a/bash/bash_completion.d/td.bash b/bash/bash_completion.d/td.bash
index 377ef6ce..92927c28 100644
--- a/bash/bash_completion.d/td.bash
+++ b/bash/bash_completion.d/td.bash
@@ -29,14 +29,8 @@ _td() {
fns=("$dir"/"${COMP_WORDS[COMP_CWORD]}"*)
fns=("${fns[@]#"$dir"/}")
- # Print quoted entries, null-delimited, if there was at least one;
- # otherwise, just print a null character to stop this hanging in Bash
- # 4.4
- if ((${#fns[@]})) ; then
- printf '%q\0' "${fns[@]}"
- else
- printf '\0'
- fi
+ # Print quoted entries, null-delimited
+ printf '%q\0' "${fns[@]}"
)
}
complete -F _td td