From cf75528e86df4c0fef5018da38e4f2256703a818 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Ekl=C3=B6f?= Date: Sun, 17 Nov 2019 17:22:34 +0100 Subject: [PATCH] Revert "term: new function: term_autowrap()" This reverts commit 686405b7031736445eeb35206e4a797a8dd78d91. --- terminal.c | 15 --------------- terminal.h | 1 - 2 files changed, 16 deletions(-) diff --git a/terminal.c b/terminal.c index ae52d7a2..5511eba5 100644 --- a/terminal.c +++ b/terminal.c @@ -1192,21 +1192,6 @@ term_reverse_index(struct terminal *term) term_cursor_up(term, 1); } -bool -term_autowrap(struct terminal *term) -{ - if (unlikely(term->cursor.lcf) && term->auto_margin) { - if (term->cursor.point.row == term->scroll_region.end - 1) { - term_scroll(term, 1); - term_cursor_to(term, term->cursor.point.row, 0); - } else - term_cursor_to(term, term->cursor.point.row + 1, 0); - - return true; - } else - return false; -} - void term_reset_view(struct terminal *term) { diff --git a/terminal.h b/terminal.h index bd12764c..f5d7658f 100644 --- a/terminal.h +++ b/terminal.h @@ -360,7 +360,6 @@ void term_scroll_reverse_partial( void term_linefeed(struct terminal *term); void term_reverse_index(struct terminal *term); -bool term_autowrap(struct terminal *term); void term_restore_cursor(struct terminal *term);