From 674e89c8c37deedc5d7bd888b0d1464d2123888a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ond=C5=99ej=20Hru=C5=A1ka?= Date: Sun, 24 Sep 2017 14:57:10 +0200 Subject: [PATCH] fix a bug with backspace when cursor is hanging --- front-end | 2 +- user/screen.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/front-end b/front-end index 6c64248..c68017b 160000 --- a/front-end +++ b/front-end @@ -1 +1 @@ -Subproject commit 6c6424877c49e3e23f563067a78e79338226359d +Subproject commit c68017bd4ad387786dd17b213be9bdd29fe4c0ea diff --git a/user/screen.c b/user/screen.c index 4543a2b..b753d59 100644 --- a/user/screen.c +++ b/user/screen.c @@ -1033,7 +1033,7 @@ screen_cursor_move(int dy, int dx, bool scroll) clear_invalid_hanging(); if (cursor.hanging && dx < 0) { - dx += 1; // consume one step on the removal of "xenl" + //dx += 1; // consume one step on the removal of "xenl" cursor.hanging = false; }