tweaks: add a COUPLE_END undo item a bit later, instead of updating it

master
Benno Schulenberg 2020-03-06 12:30:24 +01:00
parent abcdd6605c
commit 21ef05058c
1 changed files with 2 additions and 3 deletions

View File

@ -2127,16 +2127,15 @@ void do_justify(bool full_justify)
#ifndef NANO_TINY
update_undo(PASTE);
add_undo(COUPLE_END, "justification");
/* After justifying a backward-marked text, swap mark and cursor. */
if (openfile->mark && !right_side_up) {
openfile->mark = openfile->current;
openfile->mark_x = openfile->current_x;
openfile->current = line_from_number(was_top_lineno);
openfile->current_x = was_top_x;
update_undo(COUPLE_END);
}
add_undo(COUPLE_END, "justification");
#endif
/* We're done justifying. Restore the old cutbuffer. */