From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 24598 invoked from network); 23 Jun 2002 17:53:57 -0000 Received: from sunsite.dk (130.225.247.90) by ns1.primenet.com.au with SMTP; 23 Jun 2002 17:53:57 -0000 Received: (qmail 2119 invoked by alias); 23 Jun 2002 17:53:51 -0000 Mailing-List: contact zsh-workers-help@sunsite.dk; run by ezmlm Precedence: bulk X-No-Archive: yes X-Seq: 17357 Received: (qmail 2108 invoked from network); 23 Jun 2002 17:53:50 -0000 From: "Bart Schaefer" Message-Id: <1020623175319.ZM2685@candle.brasslantern.com> Date: Sun, 23 Jun 2002 17:53:19 +0000 In-Reply-To: Comments: In reply to Oliver Kiddle "Re: posix compliance" (Jun 21, 12:35pm) References: <20020618225803.GA22361@dman.com> <20020620180526.GA65950@lizzy.catnook.com> X-Mailer: Z-Mail (5.0.0 30July97) To: Oliver Kiddle , Zsh workers Subject: Re: posix compliance MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii On Jun 21, 12:35pm, Oliver Kiddle wrote: } Subject: Re: posix compliance } } I wonder if the issue I mentioned in 16853 is going to be a problem for } them then. We ought to come up with a quick fix for 4.0. This seems to handle it nicely: only add all the predefined autoloads when starting up in zsh emulation. Everything works as usual for any explicit autoloads set up with zmodload. Index: Src/mkbltnmlst.sh =================================================================== RCS file: /extra/cvsroot/zsh/zsh-4.0/Src/mkbltnmlst.sh,v retrieving revision 1.1.1.1 diff -u -r1.1.1.1 mkbltnmlst.sh --- Src/mkbltnmlst.sh 9 Apr 2001 20:14:12 -0000 1.1.1.1 +++ Src/mkbltnmlst.sh 23 Jun 2002 17:43:19 -0000 @@ -20,6 +20,7 @@ exec > $1 +echo " if (emulation == EMULATE_ZSH) {" for x_mod in $x_mods; do modfile="`grep '^name='$x_mod' ' $CFMOD | sed -e 's/^.* modfile=//' \ -e 's/ .*//'`" @@ -60,6 +61,7 @@ done test "x$linked" = xno && echo "#endif" done +echo " }" echo done_mods=" " -- 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