]> git.wh0rd.org Git - nano.git/commitdiff
when NANO_WIDE is defined, use MB_CUR_MAX only when the NO_UTF8 flag is
authorDavid Lawrence Ramsey <pooka109@gmail.com>
Wed, 5 Jan 2005 18:33:04 +0000 (18:33 +0000)
committerDavid Lawrence Ramsey <pooka109@gmail.com>
Wed, 5 Jan 2005 18:33:04 +0000 (18:33 +0000)
not set

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

src/winio.c

index b4a143cbb87400eef2fbd712fa16646e50bb0626..a7007e598cd238b6042ae554759e3798630018f3 100644 (file)
@@ -2288,13 +2288,12 @@ char *display_string(const char *buf, size_t start_col, size_t len, bool
 
     alloc_len = display_string_len(buf + start_index, start_col,
        start_col + len);
-    alloc_len +=
 #ifdef NANO_WIDE
-       MB_CUR_MAX
-#else
-       1
+    if (!ISSET(NO_UTF8))
+       alloc_len += MB_CUR_MAX * 2;
+    else
 #endif
-        * 2;
+       alloc_len += 2;
 
     converted = charalloc(alloc_len + 1);
     index = 0;