diff options
author | Sven Wischnowsky <wischnow@users.sourceforge.net> | 2002-04-16 07:48:43 +0000 |
---|---|---|
committer | Sven Wischnowsky <wischnow@users.sourceforge.net> | 2002-04-16 07:48:43 +0000 |
commit | 61f8a07bfc2348b14a7dc194968fcf62f723f36f (patch) | |
tree | 9c8b7a2d6f832b6d84dcb5963bc6715efb0c4291 /Completion/X/Command/_xauth | |
parent | d8fc48f7daa6758ec6a239789b6922af614e1fac (diff) | |
download | zsh-61f8a07bfc2348b14a7dc194968fcf62f723f36f.tar.gz zsh-61f8a07bfc2348b14a7dc194968fcf62f723f36f.tar.xz zsh-61f8a07bfc2348b14a7dc194968fcf62f723f36f.zip |
make more calls to _message use the -e option (16988)
Diffstat (limited to 'Completion/X/Command/_xauth')
-rw-r--r-- | Completion/X/Command/_xauth | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Completion/X/Command/_xauth b/Completion/X/Command/_xauth index d702e5f0a..14dfc8400 100644 --- a/Completion/X/Command/_xauth +++ b/Completion/X/Command/_xauth @@ -37,9 +37,9 @@ while [[ -n "$state" ]]; do state=protocolname else case "$words[CURRENT-1]" in - timeout) _message 'timeout(seconds)';; - group) _message 'group-id';; - data) _message 'hexdata';; + timeout) _message -e values 'timeout (seconds)';; + group) _message -e ids 'group-id';; + data) _message -e values 'hexdata';; *) _wanted options expl 'xauth generate options' \ compadd trusted untrusted timeout group data && ret=0 |