mirror of
git://git.sv.gnu.org/nano.git
synced 2024-11-30 00:23:28 +03:00
tweaks: condense a comment and reshuffle a couple of lines
This commit is contained in:
parent
404a6862cd
commit
d4468b2def
14
src/text.c
14
src/text.c
@ -1355,18 +1355,18 @@ void update_undo(undo_type action)
|
||||
u->cutbuffer = copy_buffer(cutbuffer);
|
||||
}
|
||||
if (u->xflags & MARK_WAS_SET) {
|
||||
/* If the "marking" operation was from right-->left or
|
||||
* bottom-->top, then swap the mark points. */
|
||||
if ((u->lineno == u->mark_begin_lineno && u->begin < u->mark_begin_x)
|
||||
|| u->lineno < u->mark_begin_lineno) {
|
||||
/* If the region was marked backwards, swap the end points. */
|
||||
if (u->lineno < u->mark_begin_lineno ||
|
||||
(u->lineno == u->mark_begin_lineno &&
|
||||
u->begin < u->mark_begin_x)) {
|
||||
ssize_t line = u->lineno;
|
||||
size_t x_loc = u->begin;
|
||||
|
||||
u->begin = u->mark_begin_x;
|
||||
u->mark_begin_x = x_loc;
|
||||
|
||||
u->lineno = u->mark_begin_lineno;
|
||||
u->begin = u->mark_begin_x;
|
||||
|
||||
u->mark_begin_lineno = line;
|
||||
u->mark_begin_x = x_loc;
|
||||
} else
|
||||
u->xflags |= WAS_MARKED_FORWARD;
|
||||
} else {
|
||||
|
Loading…
Reference in New Issue
Block a user