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
master
David Lawrence Ramsey 2004-12-28 22:36:13 +00:00
parent a9b9913c6b
commit c8ade44741
1 changed files with 1 additions and 0 deletions

View File

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