Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 6 Jan 2007 17:21:23 +0300
From:      Andrey Chernov <ache@freebsd.org>
To:        Rong-en Fan <grafan@gmail.com>
Cc:        FreeBSD Current <freebsd-current@freebsd.org>
Subject:   Re: [CFT] ncurses update
Message-ID:  <20070106142123.GA93898@nagual.pp.ru>
In-Reply-To: <6eb82e0701060050s2a28d307m199ccfe0924e1a9@mail.gmail.com>
References:  <6eb82e0701060050s2a28d307m199ccfe0924e1a9@mail.gmail.com>

next in thread | previous in thread | raw e-mail | index | archive | help
On Sat, Jan 06, 2007 at 04:50:30PM +0800, Rong-en Fan wrote:
> http://people.freebsd.org/~rafan/ncurses/ncurses-5.6-fbsd7-20070106.diff.gz

In our code

 (*tok == '\0' || *tok == '\\' || !isgraph(*tok)))

must be

 (*tok == '\0' || *tok == '\\' || !isgraph(UChar(*tok))))

BTW, why our glue is ever needed? I see ncurses already is able to use 
cgetent. Not sure about proper TERMPATH and isetuid handling.

-- 
http://ache.pp.ru/



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20070106142123.GA93898>