[vte/vte-0-48] emulation: Disregard bce only when autowrapping to the new line



commit 992c481f21e266e7cdfcee1d425b18da4df9ef8d
Author: Egmont Koblinger <egmont gmail com>
Date:   Sun Apr 23 23:57:57 2017 +0200

    emulation: Disregard bce only when autowrapping to the new line
    
    Apply bce (background color erase) on a line that newly appears due to an
    explicit escape sequence, but not when the text overflows to the next line.
    
    This improves the fix from commit 18171bcfeaf8f3bf4bcb8a04dfcff916a3fbc40b
    and fixes the le editor.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=754596#c15
    (cherry picked from commit a26a60b8e564968b61716f0d2e52e17cd9362413)

 src/vte.cc         |   13 +++++++------
 src/vteinternal.hh |    2 +-
 src/vteseq.cc      |    4 ++--
 3 files changed, 10 insertions(+), 9 deletions(-)
---
diff --git a/src/vte.cc b/src/vte.cc
index d8fc4fc..c56c7da 100644
--- a/src/vte.cc
+++ b/src/vte.cc
@@ -2770,7 +2770,7 @@ VteTerminalPrivate::cleanup_fragments(long start,
 
 /* Cursor down, with scrolling. */
 void
-VteTerminalPrivate::cursor_down()
+VteTerminalPrivate::cursor_down(bool explicit_sequence)
 {
        long start, end;
 
@@ -2819,13 +2819,14 @@ VteTerminalPrivate::cursor_down()
                        update_insert_delta();
                }
 
-               /* Match xterm and fill the new row when scrolling. */
-#if 0           /* Disable for now: see bug 754596. */
-                if (m_fill_defaults.attr.back != VTE_DEFAULT_BG) {
+                /* Handle bce (background color erase), however, diverge from xterm:
+                 * only fill the new row with the background color if scrolling
+                 * happens due to an explicit escape sequence, not due to autowrapping.
+                 * See bug 754596 for details. */
+                if (explicit_sequence && m_fill_defaults.attr.back != VTE_DEFAULT_BG) {
                        VteRowData *rowdata = ensure_row();
                         _vte_row_data_fill (rowdata, &m_fill_defaults, m_column_count);
                }
-#endif
        } else {
                /* Otherwise, just move the cursor down. */
                 m_screen->cursor.row++;
@@ -2962,7 +2963,7 @@ VteTerminalPrivate::insert_char(gunichar c,
                        /* Mark this line as soft-wrapped. */
                        row = ensure_row();
                        row->attr.soft_wrapped = 1;
-                       cursor_down();
+                        cursor_down(false);
                } else {
                        /* Don't wrap, stay at the rightmost column. */
                         col = m_screen->cursor.col =
diff --git a/src/vteinternal.hh b/src/vteinternal.hh
index ff5b93c..a20e89f 100644
--- a/src/vteinternal.hh
+++ b/src/vteinternal.hh
@@ -558,7 +558,7 @@ public:
         void cleanup_fragments(long start,
                                long end);
 
-        void cursor_down();
+        void cursor_down(bool explicit_sequence);
         void drop_scrollback();
 
         void restore_cursor(VteScreen *screen__);
diff --git a/src/vteseq.cc b/src/vteseq.cc
index a8e66fe..3f8467e 100644
--- a/src/vteseq.cc
+++ b/src/vteseq.cc
@@ -1660,7 +1660,7 @@ static void
 vte_sequence_handler_next_line (VteTerminalPrivate *that, GValueArray *params)
 {
         that->set_cursor_column(0);
-       that->cursor_down();
+        that->cursor_down(true);
 }
 
 /* No-op. */
@@ -1817,7 +1817,7 @@ vte_sequence_handler_line_feed (VteTerminalPrivate *that, GValueArray *params)
 {
         that->ensure_cursor_is_onscreen();
 
-       that->cursor_down();
+        that->cursor_down(true);
 }
 
 /* Cursor up 1 line, with scrolling. */


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]