summaryrefslogtreecommitdiff
path: root/completions/sbcl
diff options
context:
space:
mode:
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