summaryrefslogtreecommitdiff
path: root/completions/sbcl
diff options
context:
space:
mode:
authorGabriel F. T. Gomes <gabriel@inconstante.net.br>2020-08-03 18:43:14 -0300
committerGabriel F. T. Gomes <gabriel@inconstante.net.br>2020-08-03 18:43:14 -0300
commitcc81eb120ad1a456f030f7b828697013a9b2b66a (patch)
treebb61702f98b407b2f7987faa846190fb3f002e55 /completions/sbcl
parent8394526300cc384e53c470303aeb8b4fdcaf84a3 (diff)
parent95623d39d6029ba78ec96ad5ea08e9ac12629b91 (diff)
downloadbash-completion-cc81eb120ad1a456f030f7b828697013a9b2b66a.tar.gz
Update upstream source from tag 'upstream/2.11'
Update to upstream version '2.11' with Debian dir 932c2c1a6192441f3cd8897e72d737f2f0277f60
Diffstat (limited to 'completions/sbcl')
-rw-r--r--completions/sbcl8
1 files changed, 4 insertions, 4 deletions
diff --git a/completions/sbcl b/completions/sbcl
index a8dd5345..22a93e4a 100644
--- a/completions/sbcl
+++ b/completions/sbcl
@@ -8,14 +8,14 @@ _sbcl()
_init_completion || return
# completing an option (may or may not be separated by a space)
- if [[ "$cur" == -* ]]; then
- COMPREPLY=( $(compgen -W '--core --noinform --help --version
+ if [[ $cur == -* ]]; then
+ COMPREPLY=($(compgen -W '--core --noinform --help --version
--sysinit --userinit --eval --noprint --disable-debugger
- --end-runtime-options --end-toplevel-options ' -- "$cur") )
+ --end-runtime-options --end-toplevel-options ' -- "$cur"))
else
_filedir
fi
} &&
-complete -F _sbcl sbcl sbcl-mt
+ complete -F _sbcl sbcl sbcl-mt
# ex: filetype=sh