text: store the new file size in the undo item also when joining lines

This fixes https://savannah.gnu.org/bugs/?48099 reported by Mike Scalora.
master
Benno Schulenberg 2016-06-04 11:35:11 +02:00
parent 0eefd2c326
commit edf230b7df
1 changed files with 3 additions and 1 deletions

View File

@ -137,6 +137,9 @@ void do_deletion(undo_type action)
strlen(openfile->current->data) + strlen(foo->data) + 1);
strcat(openfile->current->data, foo->data);
/* Adjust the file size, and remember it for a possible redo. */
openfile->current_undo->newsize = --(openfile->totsize);
#ifndef NANO_TINY
if (openfile->mark_set &&
openfile->mark_begin == openfile->current->next) {
@ -146,7 +149,6 @@ void do_deletion(undo_type action)
#endif
unlink_node(foo);
renumber(openfile->current);
openfile->totsize--;
/* Two lines were joined, so we need to refresh the screen. */
refresh_needed = TRUE;