fix a bug with backspace when cursor is hanging

This commit is contained in:
2017-09-24 14:57:10 +02:00
parent 62a0925586
commit 674e89c8c3
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -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;
}