]> git.wh0rd.org Git - nano.git/commitdiff
Backport r5370 from trunk.
authorChris Allegretta <chrisa@asty.org>
Sun, 15 Nov 2015 06:55:04 +0000 (06:55 +0000)
committerChris Allegretta <chrisa@asty.org>
Sun, 15 Nov 2015 06:55:04 +0000 (06:55 +0000)
git-svn-id: svn://svn.savannah.gnu.org/nano/branches/nano_2_4_branch@5418 35c25a1d-7b9e-4130-9fde-d3aeb78583b8

ChangeLog
src/winio.c

index 3489d7201c6c80c9b6b459d0b05373a7b0c7385c..f3bbd75e016fa93d83309ebea64031a99add35ea 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2015-09-05  Benno Schulenberg  <bensberg@justemail.net>
+       * src/winio.c (display_string, edit_draw): Force a redraw of a line
+       only when it contains a multicolumn character, to spare all regular
+       text this significant slowdown.  This fixes Savannah bug #45684
+       reported by Wyatt Ward.
+
 2015-08-14  Benno Schulenberg  <bensberg@justemail.net>
        * src/help.c (help_line_len): The wrap location can be beyond the EOL,
        so for determining the length of the current line, don't start at that
index af269010c94cf7181dc61cd21e0bed10e13d647d..523e3dbdce022b7c7207783e34e4da7772ba67d6 100644 (file)
@@ -40,6 +40,8 @@ static int statusblank = 0;
 static bool disable_cursorpos = FALSE;
        /* Should we temporarily disable constant cursor position
         * display? */
+static bool seen_wide = FALSE;
+       /* Whether we've seen a multicolumn character in the current line. */
 
 static sig_atomic_t sigwinch_counter_save = 0;
 
@@ -1896,6 +1898,7 @@ char *display_string(const char *buf, size_t start_col, size_t len, bool
     converted = charalloc(alloc_len);
 
     index = 0;
+    seen_wide = FALSE;
 
     if (buf[start_index] != '\0' && buf[start_index] != '\t' &&
        (column < start_col || (dollars && column > 0))) {
@@ -1939,6 +1942,9 @@ char *display_string(const char *buf, size_t start_col, size_t len, bool
     while (buf[start_index] != '\0') {
        buf_mb_len = parse_mbchar(buf + start_index, buf_mb, NULL);
 
+       if (mbwidth(buf + start_index) > 1)
+           seen_wide = TRUE;
+
        /* Make sure there's enough room for the next character, whether
         * it's a multibyte control character, a non-control multibyte
         * character, a tab character, or a null terminator. */
@@ -2473,7 +2479,8 @@ void edit_draw(filestruct *fileptr, const char *converted, int
     /* Tell ncurses to really redraw the line without trying to optimize
      * for what it thinks is already there, because it gets it wrong in
      * the case of a wide character in column zero.  See bug #31743. */
-    wredrawln(edit, line, 1);
+    if (seen_wide)
+       wredrawln(edit, line, 1);
 #endif
 
 #ifndef DISABLE_COLOR