Date: Sun, 4 Jun 2000 19:31:46 -0700 From: "Andrey A. Chernov" <ache@freebsd.org> To: Josef Karthauser <joe@FreeBSD.org> Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/bin/ls Makefile extern.h ls.c ls.h print.c Message-ID: <20000604193146.B3141@freebsd.org> In-Reply-To: <200006050214.TAA18352@freefall.freebsd.org>; from joe@FreeBSD.org on Sun, Jun 04, 2000 at 07:14:01PM -0700 References: <200006050214.TAA18352@freefall.freebsd.org>
next in thread | previous in thread | raw e-mail | index | archive | help
On Sun, Jun 04, 2000 at 07:14:01PM -0700, Josef Karthauser wrote: > joe 2000/06/04 19:14:01 PDT > > Modified files: > bin/ls Makefile extern.h ls.c ls.h print.c > Log: > * Re-implement colour support using termcap's AF and AB capabilities > to manage the ANSI colour sequences. Colour support is disabled > unless the TERM environment variable references a valid termcap. ansiseq = tgetstr("se", &bp); This is wrong way to turn colors off. "se" for attributes, not for colors. This is very inefficient and cause full termcap entry search each time. -- Andrey A. Chernov <ache@nagual.pp.ru> http://ache.pp.ru/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20000604193146.B3141>