summary refs log tree commit diff
path: root/Completion
diff options
context:
space:
mode:
Diffstat (limited to 'Completion')
-rw-r--r--Completion/Core/_call2
-rw-r--r--Completion/User/_groups2
2 files changed, 1 insertions, 3 deletions
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)}%%:*}}