From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 12439 invoked from network); 2 May 2000 12:17:10 -0000 Received: from sunsite.auc.dk (130.225.51.30) by ns1.primenet.com.au with SMTP; 2 May 2000 12:17:10 -0000 Received: (qmail 18190 invoked by alias); 2 May 2000 12:16:29 -0000 Mailing-List: contact zsh-workers-help@sunsite.auc.dk; run by ezmlm Precedence: bulk X-No-Archive: yes X-Seq: 11067 Received: (qmail 18180 invoked from network); 2 May 2000 12:16:29 -0000 X-Envelope-Sender-Is: Andrej.Borsenkow@mow.siemens.ru (at relayer david.siemens.de) From: "Andrej Borsenkow" To: "Sven Wischnowsky" , Subject: RE: PATCH: Re: z(re)compile and deleted files Date: Tue, 2 May 2000 16:16:20 +0400 Message-ID: <001601bfb430$39486960$21c9ca95@mow.siemens.ru> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="----=_NextPart_000_0017_01BFB451.C05A0960" X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2911.0) In-reply-to: <200005021131.NAA02737@beta.informatik.hu-berlin.de> Importance: Normal X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2919.6700 This is a multi-part message in MIME format. ------=_NextPart_000_0017_01BFB451.C05A0960 Content-Type: text/plain; charset="koi8-r" Content-Transfer-Encoding: 7bit > > This will make it recompile the zwc file if the number of files in it > is different from the number of files that should go in it. > And if somebody adds one file while removing the other? O.K. new one should be newer than wordcode file ... let's see. > > BTW completion for zcompile does not list -t option (at least). > > Eh? From builtins.yo: > I said "completion" not "manual" :-) Patch follows. "examine wordcode file" is not probably the best description - any takers? ------=_NextPart_000_0017_01BFB451.C05A0960 Content-Type: application/octet-stream; name="_zcompile.diff" Content-Transfer-Encoding: quoted-printable Content-Disposition: attachment; filename="_zcompile.diff" --- Completion/Builtins/_zcompile.org Tue Apr 11 12:59:19 2000=0A= +++ Completion/Builtins/_zcompile Tue May 2 16:07:29 2000=0A= @@ -4,14 +4,15 @@=0A= typeset -A opt_args=0A= =0A= _arguments -s \=0A= - '(-c -m -a)-U[don'\''t expand aliases]' \=0A= - '(-M)-R[mark as read]' \=0A= - '(-R)-M[mark as mapped]' \=0A= - '(-c -z -m -a)-k[ksh-style autoloading]' \=0A= - '(-c -k -m -a)-z[zsh-style autoloading]' \=0A= - '(-U -z -k)-c[currently defined functions]' \=0A= - '(-U -z -k)-m[use names as patterns]' \=0A= - '(-U -z -k)-a[write autoload functions]' \=0A= + '(-t -c -m -a)-U[don'\''t expand aliases]' \=0A= + '(-t -M)-R[mark as read]' \=0A= + '(-t -R)-M[mark as mapped]' \=0A= + '(-t -c -z -m -a)-k[ksh-style autoloading]' \=0A= + '(-t -c -k -m -a)-z[zsh-style autoloading]' \=0A= + '(-t -U -z -k)-c[currently defined functions]' \=0A= + '(-t -U -z -k)-m[use names as patterns]' \=0A= + '(-t -U -z -k)-a[write autoload functions]' \=0A= + '(-M -R -U -z -k -a -c -m)-t[examine wordcode file]' \=0A= ':zwc file:_files' \=0A= '*:function:->function' && return 0=0A= =0A= ------=_NextPart_000_0017_01BFB451.C05A0960--