[vte] lib: Remove accidentally committed debug spew
- From: Christian Persch <chpe src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [vte] lib: Remove accidentally committed debug spew
- Date: Mon, 18 Jan 2016 20:38:32 +0000 (UTC)
commit fee25aaed7e599b6ce351113c61b242d8aab9589
Author: Christian Persch <chpe gnome org>
Date: Mon Jan 18 21:37:19 2016 +0100
lib: Remove accidentally committed debug spew
src/vteseq.cc | 2 --
1 files changed, 0 insertions(+), 2 deletions(-)
---
diff --git a/src/vteseq.cc b/src/vteseq.cc
index ae04eaa..d00fafb 100644
--- a/src/vteseq.cc
+++ b/src/vteseq.cc
@@ -1193,7 +1193,6 @@ vte_sequence_handler_cursor_character_absolute (VteTerminalPrivate *that, GValue
void
VteTerminalPrivate::set_cursor_column(vte::grid::column_t col)
{
- if (col < 0 || col >= m_column_count) g_printerr("cursor-col outside: %ld (0..%ld)\n", col,
m_column_count);
m_cursor.col = CLAMP(col, 0, m_column_count - 1);
}
@@ -1619,7 +1618,6 @@ VteTerminalPrivate::seq_cursor_backward(vte::grid::column_t columns)
ensure_cursor_is_onscreen();
auto col = get_cursor_column();
- if (columns != CLAMP(columns,1,col))g_printerr("oversize %ld %ld\n", columns, col);
columns = CLAMP(columns, 1, col);
set_cursor_column(col - columns);
}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]