Zsh Mailing List Archive
Messages sorted by: Reverse Date, Date, Thread, Author

zsh-3.0.2 repacked



-----BEGIN PGP SIGNED MESSAGE-----

I repacked zsh-3.0.2.  The original zsh-3.0.2.tar.gz contained a superfluous
file called patl.  The ftp site list in the FAQ, META-FAQ and Doc/zsh.texi
is also changed.  The FAQ is updated to the new one posted by Peter
recently.  The Src/tags and Src/TAGS files are also updated.

It also contains a little fix which is included below to work around a bug
in the NeXTStep libc which causes slow refresh.  You only need to apply
this patch if you find zle slow when it refreshes the screen (but first
try to unset BAUD and see if that helps).

There are no other changes so please do not download the updated version
if you have already downloaded zsh-3.0.2.

The updated files are:

    66566 Dec 19 22:46 zsh-3.0.2.diff.gz
   643367 Dec 19 22:57 zsh-3.0.2.tar.gz

md5 checksum:

c352d7e793c0ea1c9fa934de9a290112  zsh-3.0.2.diff.gz
447d98cf5df924a16580ae69b0ae138e  zsh-3.0.2.tar.gz

 ----------------------------------------------------------------------
 Zoltan Hidvegi
 Coordinator of the zsh development

 My PGP public key is available from the above ftp sites (in pubring.pgp),
 via finger -l hzoli@xxxxxxxxxx or from the key servers.

 --------------- NeXTStep bug workaround begins --------------------

 *** Src/init.c	1996/12/11 02:27:28	3.1.0.9
 --- Src/init.c	1996/12/19 21:24:00
 ***************
 *** 218,230 ****
       argzero = ztrdup(argzero);
   }
   
 - static char outbuf[BUFSIZ], errbuf[BUFSIZ];
   
   /**/
   void
   init_io(void)
   {
       long ttpgrp;
   
   #ifdef RSH_BUG_WORKAROUND
       int i;
 --- 218,230 ----
       argzero = ztrdup(argzero);
   }
   
   
   /**/
   void
   init_io(void)
   {
       long ttpgrp;
 +     static char outbuf[BUFSIZ], errbuf[BUFSIZ];
   
   #ifdef RSH_BUG_WORKAROUND
       int i;
 ***************
 *** 307,312 ****
 --- 307,313 ----
   void
   init_shout(void)
   {
 +     static char shoutbuf[BUFSIZ];
   #if defined(JOB_CONTROL) && defined(TIOCSETD) && defined(NTTYDISC)
       int ldisc = NTTYDISC;
   
 ***************
 *** 316,322 ****
       /* Associate terminal file descriptor with a FILE pointer */
       shout = fdopen(SHTTY, "w");
   #ifdef _IOFBF
 !     setvbuf(shout, NULL, _IOFBF, 0);
   #endif
     
       gettyinfo(&shttyinfo);	/* get tty state */
 --- 317,323 ----
       /* Associate terminal file descriptor with a FILE pointer */
       shout = fdopen(SHTTY, "w");
   #ifdef _IOFBF
 !     setvbuf(shout, shoutbuf, _IOFBF, BUFSIZ);
   #endif
     
       gettyinfo(&shttyinfo);	/* get tty state */

 --------------- NeXTStep bug workaround ends ----------------------

-----BEGIN PGP SIGNATURE-----
Version: 2.6.3i
Charset: noconv

iQCVAwUBMrnVcAupSCiLN749AQHNXAP/R2VmI/6plQQ594rAeU1FdWV26eC74LmM
DzMAlf1FTtiEqZx3/yXU5DBcPqYfWuFrCELTj658RWI0LkJVEB/AxnRLRqN2Ooo9
6Upfj3N8V/mXwDMn6gkCge+G07oJDW/yVyZGJoJ5C52Txu/27anxGKOD0OMQZhFx
u0vQ26WaP1M=
=4bWv
-----END PGP SIGNATURE-----



Messages sorted by: Reverse Date, Date, Thread, Author