nano

nano with my custom patches
git clone git://bsandro.tech/nano
Log | Files | Refs | README | LICENSE

commit 83ba47a964b9df0c414e38644d24be26bd2c4d01
parent 345260c624d1447c44716e69fc21b3d077559c62
Author: David Lawrence Ramsey <pooka109@gmail.com>
Date:   Mon, 24 Jan 2005 01:21:09 +0000

add another cleanup


git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@2297 35c25a1d-7b9e-4130-9fde-d3aeb78583b8

Diffstat:
Msrc/chars.c | 6+-----
1 file changed, 1 insertion(+), 5 deletions(-)

diff --git a/src/chars.c b/src/chars.c @@ -348,11 +348,7 @@ int parse_mbchar(const char *buf, char *chr * and the width in columns of its visible equivalent as * returned by control_rep(). */ else if (is_cntrl_mbchar(buf)) { - char *ctrl_buf_mb = -#ifdef NANO_WIDE - !ISSET(NO_UTF8) ? charalloc(MB_CUR_MAX) : -#endif - charalloc(1); + char *ctrl_buf_mb = charalloc(MB_CUR_MAX); int ctrl_buf_mb_len; (*col)++;