Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
Re: posix compliance
- X-seq: zsh-workers 17357
- From: "Bart Schaefer" <schaefer@xxxxxxxxxxxxxxxx>
- To: Oliver Kiddle <okiddle@xxxxxxxxxxx>, Zsh workers <zsh-workers@xxxxxxxxxx>
- Subject: Re: posix compliance
- Date: Sun, 23 Jun 2002 17:53:19 +0000
- In-reply-to: <E17LMhA-0008L0-00@xxxxxxxxxxxxxxxxxx>
- Mailing-list: contact zsh-workers-help@xxxxxxxxxx; run by ezmlm
- References: <20020618225803.GA22361@xxxxxxxx> <20020620180526.GA65950@xxxxxxxxxxxxxxxxx> <E17LMhA-0008L0-00@xxxxxxxxxxxxxxxxxx>
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
Messages sorted by:
Reverse Date,
Date,
Thread,
Author