fix a bug with backspace when cursor is hanging

http-comm
Ondřej Hruška 7 years ago
parent 62a0925586
commit 674e89c8c3
Signed by: MightyPork
GPG Key ID: 2C5FD5035250423D
  1. 2
      front-end
  2. 2
      user/screen.c

@ -1 +1 @@
Subproject commit 6c6424877c49e3e23f563067a78e79338226359d
Subproject commit c68017bd4ad387786dd17b213be9bdd29fe4c0ea

@ -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;
}

Loading…
Cancel
Save