From cabacfff3b5485b1cee53674640dce29214cdd44 Mon Sep 17 00:00:00 2001 From: Eric Cook Date: Sun, 5 Jun 2016 12:05:34 -0400 Subject: 38547: Completion/compdump: only autoload functions when they exist in fpath --- Completion/compdump | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'Completion/compdump') diff --git a/Completion/compdump b/Completion/compdump index 068383c22..e0dc8b805 100644 --- a/Completion/compdump +++ b/Completion/compdump @@ -101,9 +101,10 @@ bindkey | print >> $_d_file -# Autoloads: look for all functions beginning with `_'. +# Autoloads: look for all defined functions beginning with `_' (that also +# exists in fpath: see workers/38547). -_d_als=(${(o)$(typeset +fm '_*')}) +_d_als=($^fpath/(${(o~j.|.)$(typeset +fm '_*')})(N:t)) # print them out: about five to a line looks neat -- cgit 1.4.1