c28716f
From 8d660f18b2b967f43b5891958553f0319d4f9f02 Mon Sep 17 00:00:00 2001
c28716f
From: Eric Cook <llua@gmx.com>
c28716f
Date: Mon, 18 May 2015 01:02:41 -0400
c28716f
Subject: [PATCH] zsh-completion: less forking in _systemctl_failed_units() and
c28716f
 make the array `_sys_failed_units' local to the completer.
c28716f
c28716f
(cherry picked from commit 463985a9f489c54b89ee7ce6ffd67501035420b4)
c28716f
---
c28716f
 shell-completion/zsh/_systemctl.in | 4 ++--
c28716f
 1 file changed, 2 insertions(+), 2 deletions(-)
c28716f
c28716f
diff --git a/shell-completion/zsh/_systemctl.in b/shell-completion/zsh/_systemctl.in
c28716f
index b8921791dd..e95b7d3af0 100644
c28716f
--- a/shell-completion/zsh/_systemctl.in
c28716f
+++ b/shell-completion/zsh/_systemctl.in
c28716f
@@ -165,7 +165,7 @@ _systemctl_restartable_units(){
c28716f
                                { while read -r a b; do echo -E - " $a"; done; } )) )
c28716f
 }
c28716f
 
c28716f
-_systemctl_failed_units()  {_sys_failed_units=(  $(__systemctl list-units --failed | { while read -r a b; do echo -E - " $a"; done; }) )}
c28716f
+_systemctl_failed_units()  {_sys_failed_units=( ${${(f)"$(__systemctl list-units --failed)"}%% *} ) }
c28716f
 _systemctl_unit_state() { typeset -gA _sys_unit_state; _sys_unit_state=( $(__systemctl list-unit-files) ) }
c28716f
 
c28716f
 local fun
c28716f
@@ -201,7 +201,7 @@ done
c28716f
 # Completion functions for FAILED_UNITS
c28716f
 (( $+functions[_systemctl_reset-failed] )) || _systemctl_reset-failed()
c28716f
 {
c28716f
-  _systemctl_failed_units
c28716f
+  local _sys_failed_units; _systemctl_failed_units
c28716f
   compadd "$@" -a - _sys_failed_units || _message "no failed unit found"
c28716f
 }
c28716f