[vte] emulation: Disregard bce only when autowrapping to the new line
- From: Egmont Koblinger <egmontkob src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [vte] emulation: Disregard bce only when autowrapping to the new line
- Date: Sun, 23 Apr 2017 22:03:37 +0000 (UTC)
commit a26a60b8e564968b61716f0d2e52e17cd9362413
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
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 9bbade8..9ea0b03 100644
--- a/src/vte.cc
+++ b/src/vte.cc
@@ -2773,7 +2773,7 @@ VteTerminalPrivate::cleanup_fragments(long start,
/* Cursor down, with scrolling. */
void
-VteTerminalPrivate::cursor_down()
+VteTerminalPrivate::cursor_down(bool explicit_sequence)
{
long start, end;
@@ -2822,13 +2822,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++;
@@ -2965,7 +2966,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 a43455e..61dcb95 100644
--- a/src/vteinternal.hh
+++ b/src/vteinternal.hh
@@ -560,7 +560,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 2d97170..be2868f 100644
--- a/src/vteseq.cc
+++ b/src/vteseq.cc
@@ -1661,7 +1661,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. */
@@ -1818,7 +1818,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]