about summary refs log tree commit diff
path: root/Completion/Unix/Command/_links
diff options
context:
space:
mode:
Diffstat (limited to 'Completion/Unix/Command/_links')
-rw-r--r--Completion/Unix/Command/_links7
1 files changed, 5 insertions, 2 deletions
diff --git a/Completion/Unix/Command/_links b/Completion/Unix/Command/_links
index d21fae9db..899c10108 100644
--- a/Completion/Unix/Command/_links
+++ b/Completion/Unix/Command/_links
@@ -1,6 +1,6 @@
 #compdef links
 
-local curcontext="$curcontext" state line
+local curcontext="$curcontext" state line ret=1
 typeset -A opt_args
 
 _arguments -C \
@@ -25,10 +25,13 @@ _arguments -C \
   '(-help)-source[dump the source page]' \
   '(-help)-unrestartable-receive-timeout[timeout on non restartable connections]:secs:' \
   '(-help)-version[prints the links version number and exit]' \
-  ':url:->html' && return 0
+  ':url:->html' && ret=0
 
 case "$state" in
 html)
   _files -g '*.html' || _urls
+  return
   ;;
 esac
+
+return ret