diff options
author | Oliver Kiddle <opk@users.sourceforge.net> | 2000-05-11 16:14:58 +0000 |
---|---|---|
committer | Oliver Kiddle <opk@users.sourceforge.net> | 2000-05-11 16:14:58 +0000 |
commit | a39eb7948ee559d7aef6010a496ba0c1c1f24549 (patch) | |
tree | df3cad6f14a2cc0fd745628912df6cd6d0200638 | |
parent | cd65b9b4bbdd1dabfeb8948fd7397bbadfed4622 (diff) | |
download | zsh-a39eb7948ee559d7aef6010a496ba0c1c1f24549.tar.gz zsh-a39eb7948ee559d7aef6010a496ba0c1c1f24549.tar.xz zsh-a39eb7948ee559d7aef6010a496ba0c1c1f24549.zip |
Back out 11327 and make the correct fix in _groups (redirect ypcat to stderr)
-rw-r--r-- | ChangeLog | 2 | ||||
-rw-r--r-- | Completion/Core/_call | 2 | ||||
-rw-r--r-- | Completion/User/_groups | 2 |
3 files changed, 2 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog index b52dd31f8..dec29eaa9 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,6 +1,6 @@ 2000-05-11 Oliver Kiddle <opk@zsh.org> - * 11327: Completion/Core/_call: pass on exit code from called command + * 11329: Completion/User/_groups: redirect ypcat to stderr 2000-05-11 Sven Wischnowsky <wischnow@zsh.org> diff --git a/Completion/Core/_call b/Completion/Core/_call index 602e513ff..b038a80bc 100644 --- a/Completion/Core/_call +++ b/Completion/Core/_call @@ -11,5 +11,3 @@ if zstyle -s ":completion:${curcontext}:${1}" command tmp; then else eval "$argv[2,-1]" fi - -return $? diff --git a/Completion/User/_groups b/Completion/User/_groups index 7ee9969cd..d1475b857 100644 --- a/Completion/User/_groups +++ b/Completion/User/_groups @@ -7,7 +7,7 @@ _tags groups || return 1 if ! zstyle -a ":completion:${curcontext}:" groups groups; then (( $+_cache_groups )) || if (( ${+commands[ypcat]} )) && - tmp=$(_call groups ypcat group.byname); then + tmp=$(_call groups ypcat group.byname 2>/dev/null); then : ${(A)_cache_groups:=${${(f)tmp}%%:*}} # If you use YP else : ${(A)_cache_groups:=${${(s: :)$(</etc/group)}%%:*}} |