Commit c8ade447 authored by David Lawrence Ramsey's avatar David Lawrence Ramsey
Browse files

set totsize properly when deleting a character or backspacing over it

git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@2205 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
No related merge requests found
Showing with 1 addition and 0 deletions
+1 -0
......@@ -1198,6 +1198,7 @@ void do_delete(void)
if (current_x < mark_beginx && mark_beginbuf == current)
mark_beginx -= char_len;
#endif
totsize -= char_len;
} else if (current != filebot && (current->next != filebot ||
current->data[0] == '\0')) {
/* We can delete the line before filebot only if it is blank: it
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment