summaryrefslogtreecommitdiff
path: root/completions/lisp
diff options
context:
space:
mode:
Diffstat (limited to 'completions/lisp')
-rw-r--r--completions/lisp8
1 files changed, 4 insertions, 4 deletions
diff --git a/completions/lisp b/completions/lisp
index f9f68275..098567bc 100644
--- a/completions/lisp
+++ b/completions/lisp
@@ -8,15 +8,15 @@ _lisp()
_init_completion || return
# completing an option (may or may not be separated by a space)
- if [[ "$cur" == -* ]]; then
- COMPREPLY=( $(compgen -W '-core -lib -batch -quit -edit -eval -init
+ if [[ $cur == -* ]]; then
+ COMPREPLY=($(compgen -W '-core -lib -batch -quit -edit -eval -init
-dynamic-space-size -hinit -noinit -nositeinit -load -slave' \
- -- "$cur") )
+ -- "$cur"))
else
_filedir
fi
} &&
-complete -F _lisp -o default lisp
+ complete -F _lisp -o default lisp
# ex: filetype=sh