summaryrefslogtreecommitdiff
path: root/Completion/Unix/Command/_at
diff options
context:
space:
mode:
authorOliver Kiddle <opk@zsh.org>2014-10-14 23:03:40 +0200
committerOliver Kiddle <opk@zsh.org>2014-10-14 23:04:45 +0200
commit13fc579343b24d298fb8905933b6000d7fcda114 (patch)
treecbc1000696357438714107635f93166bcab76d3a /Completion/Unix/Command/_at
parent66320ca93a717467a0ed0d34da4c06257953aa50 (diff)
downloadzsh-13fc579343b24d298fb8905933b6000d7fcda114.tar.gz
zsh-13fc579343b24d298fb8905933b6000d7fcda114.zip
33467: correct return status on functions and numerous other minor fixes
Diffstat (limited to 'Completion/Unix/Command/_at')
-rw-r--r--Completion/Unix/Command/_at12
1 files changed, 7 insertions, 5 deletions
diff --git a/Completion/Unix/Command/_at b/Completion/Unix/Command/_at
index 8734e6b55..b22589020 100644
--- a/Completion/Unix/Command/_at
+++ b/Completion/Unix/Command/_at
@@ -1,6 +1,6 @@
#compdef atrm atq at batch
-local context state line expl
+local context state line expl ret=1
typeset -A opt_args
#todo (when extremely bored) make -l and -d do the atq and atrm completions
@@ -8,12 +8,12 @@ case $service in
atrm)
_arguments \
'-V[print version number]' \
- '*:job number:->jobs'
+ '*:job number:->jobs' && ret=0
;;
atq)
_arguments \
'-V[print version number]' \
- '-q[uses specified queue]:a-z+A-Z'
+ '-q[uses specified queue]:a-z+A-Z' && ret=0
;;
at|batch)
_arguments \
@@ -29,11 +29,13 @@ at|batch)
- atrm \
'-d[alias for atrm]' \
- show-job \
- '-c[cat specified jobs to stdout]:*:job number:->jobs'
+ '-c[cat specified jobs to stdout]:*:job number:->jobs' && ret=0
esac
case $state in
jobs)
- _wanted job expl 'job number' compadd ${(M)${(f)"$(_call_program job atq)"}##<->}
+ _wanted -C $context jobs expl 'job number' compadd ${(M)${(f)"$(_call_program job atq)"}##<->} && ret=0
;;
esac
+
+return ret