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

PATCH: Re: setopt list_types misaligns columns



Bart Schaefer wrote:

> Fragments of a long completion listing, with list_types set:
> 
> MakeTeXPK         makeinfo          mkdir             mogrify
> Misc/              makemap           mkdirhier         montage
> Muttrc            makempx           mke2fs            more
> mail              md5sum            mkinitrd          msgcmp
> mail-files        megatron          mkinstalldirs*     msgcomm
> mail.rc           merge             mklost+found      msgfmt
> 
> This does NOT happen if the complist module is loaded, whether or not
> colors are enabled.

Wrong length calculation. A rather stupid bug.

Bye
 Sven

diff -ru ../z.old/Src/Zle/compresult.c Src/Zle/compresult.c
--- ../z.old/Src/Zle/compresult.c	Thu Mar 16 10:06:43 2000
+++ Src/Zle/compresult.c	Fri Mar 17 09:09:03 2000
@@ -1799,9 +1799,8 @@
 	nicezputs(m->str, shout);
 	len = niceztrlen(m->str);
 
-	if (isset(LISTTYPES)) {
-	    if (buf)
-		putc(file_type(buf->st_mode), shout);
+	if (isset(LISTTYPES) && buf) {
+	    putc(file_type(buf->st_mode), shout);
 	    len++;
 	}
     }

--
Sven Wischnowsky                         wischnow@xxxxxxxxxxxxxxxxxxxxxxx



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