copying: do not forget to update the screen when M-6 is pressed

This fixes https://savannah.gnu.org/bugs/?58140.

Bug existed since commit f52b6cf1 from one week ago.
master
Benno Schulenberg 2020-04-08 11:04:35 +02:00
parent 5c3a22dbd6
commit dba7a8a70a
1 changed files with 2 additions and 1 deletions

View File

@ -573,6 +573,7 @@ void copy_text(void)
bool at_eol = (openfile->current->data[openfile->current_x] == '\0');
bool sans_newline = (ISSET(NO_NEWLINES) && openfile->current->next == NULL);
size_t from_x = (ISSET(CUT_FROM_CURSOR)) ? openfile->current_x : 0;
linestruct *was_current = openfile->current;
linestruct *addition;
if (openfile->mark || openfile->last_action != COPY || !keep_cutbuffer) {
@ -631,7 +632,7 @@ void copy_text(void)
} else
openfile->current_x = strlen(openfile->current->data);
openfile->placewewant = xplustabs();
edit_redraw(was_current, FLOWING);
openfile->last_action = COPY;
keep_cutbuffer = TRUE;