]> git.wh0rd.org Git - nano.git/commitdiff
add another cleanup
authorDavid Lawrence Ramsey <pooka109@gmail.com>
Mon, 24 Jan 2005 01:21:09 +0000 (01:21 +0000)
committerDavid Lawrence Ramsey <pooka109@gmail.com>
Mon, 24 Jan 2005 01:21:09 +0000 (01:21 +0000)
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@2297 35c25a1d-7b9e-4130-9fde-d3aeb78583b8

src/chars.c

index 8c92908ee00e847406420a8435ab1346441e88e7..6b56a96c315172a7e1f58acbe8e71a150bed26b8 100644 (file)
@@ -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)++;