From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 9823 invoked from network); 27 Jul 2000 07:51:43 -0000 Received: from sunsite.auc.dk (130.225.51.30) by ns1.primenet.com.au with SMTP; 27 Jul 2000 07:51:43 -0000 Received: (qmail 7236 invoked by alias); 27 Jul 2000 07:51:19 -0000 Mailing-List: contact zsh-workers-help@sunsite.auc.dk; run by ezmlm Precedence: bulk X-No-Archive: yes X-Seq: 12396 Received: (qmail 7229 invoked from network); 27 Jul 2000 07:51:18 -0000 From: "Bart Schaefer" Message-Id: <1000727075113.ZM26790@candle.brasslantern.com> Date: Thu, 27 Jul 2000 07:51:13 +0000 X-Mailer: Z-Mail (5.0.0 30July97) To: zsh-workers@sunsite.auc.dk Subject: PATCH: zed or fned on autoloaded functions MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii The output of `functions' for autoloadable functions has changed, but zed didn't keep up. Index: Functions/Misc/zed =================================================================== @@ -41,7 +41,7 @@ if ((fun)) then var="$(functions $1)" # If function is undefined but autoloadable, load it - if [[ $var = undefined* ]] then + if [[ $var = *\#\ undefined* ]] then local dir for dir in $fpath; do if [[ -f $dir/$1 ]] then -- Bart Schaefer Brass Lantern Enterprises http://www.well.com/user/barts http://www.brasslantern.com Zsh: http://www.zsh.org | PHPerl Project: http://phperl.sourceforge.net