[vte] Bug 596444 - word-select includes \n when the word ends at the edge of the terminal
- From: Behdad Esfahbod <behdad src gnome org>
- To: svn-commits-list gnome org
- Cc:
- Subject: [vte] Bug 596444 - word-select includes \n when the word ends at the edge of the terminal
- Date: Mon, 28 Sep 2009 17:58:05 +0000 (UTC)
commit 470030991fc3107e04934b1d3aa54d4428be7e2f
Author: Behdad Esfahbod <behdad behdad org>
Date: Mon Sep 28 13:57:26 2009 -0400
Bug 596444 - word-select includes \n when the word ends at the edge of the terminal
src/vte.c | 10 +++++-----
1 files changed, 5 insertions(+), 5 deletions(-)
---
diff --git a/src/vte.c b/src/vte.c
index b9e3243..7f027b8 100644
--- a/src/vte.c
+++ b/src/vte.c
@@ -5893,7 +5893,7 @@ vte_terminal_get_text_range_maybe_wrapped(VteTerminal *terminal,
}
/* Else, if the last visible column on this line was selected and
* not soft-wrapped, append a newline. */
- else if (is_selected(terminal, terminal->column_count - 1, row, data)) {
+ else if (is_selected(terminal, terminal->column_count, row, data)) {
/* If we didn't softwrap, add a newline. */
/* XXX need to clear row->soft_wrap on deletion! */
if (!vte_line_is_wrappable(terminal, row)) {
@@ -6237,14 +6237,14 @@ vte_terminal_extend_selection_expand (VteTerminal *terminal)
* endpoint as far right as we can expect. */
if (ec->col >= i) {
ec->col = MAX(ec->col,
- MAX(terminal->column_count - 1,
+ MAX(terminal->column_count,
(long) _vte_row_data_length (rowdata)));
}
} else {
/* Snap to the rightmost column, only if selecting anything of
* this row. */
if (ec->col >= 0)
- ec->col = MAX(ec->col, terminal->column_count - 1);
+ ec->col = MAX(ec->col, terminal->column_count);
}
ec->col = find_end_column (terminal, ec->col, ec->row);
@@ -6268,7 +6268,7 @@ vte_terminal_extend_selection_expand (VteTerminal *terminal)
/* Back up. */
for (i = (j == sc->row) ?
sc->col :
- terminal->column_count - 1;
+ terminal->column_count;
i > 0;
i--) {
if (vte_same_class(terminal,
@@ -6366,7 +6366,7 @@ vte_terminal_extend_selection_expand (VteTerminal *terminal)
ec->row = j;
}
/* Make sure we include all of the last line. */
- ec->col = terminal->column_count - 1;
+ ec->col = terminal->column_count;
if (_vte_ring_contains (screen->row_data, ec->row)) {
rowdata = _vte_ring_index(screen->row_data, ec->row);
if (rowdata != NULL) {
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]