]> git.wh0rd.org Git - nano.git/commitdiff
Oops! Misplaced a closing parenthesis.
authorBenno Schulenberg <bensberg@justemail.net>
Wed, 17 Jun 2015 11:12:42 +0000 (11:12 +0000)
committerBenno Schulenberg <bensberg@justemail.net>
Wed, 17 Jun 2015 11:12:42 +0000 (11:12 +0000)
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@5253 35c25a1d-7b9e-4130-9fde-d3aeb78583b8

src/text.c

index 3bdff0a640fbdf043170d09086e1cc1bfb227e7e..d151d904ad8996bb56d9e627e47b4dc7d8c6d3a1 100644 (file)
@@ -880,8 +880,8 @@ void add_undo(undo_type current_action)
     /* When doing contiguous adds or contiguous cuts -- which means: with
      * no cursor movement in between -- don't add a new undo item. */
     if (u && u->mark_begin_lineno == fs->current->lineno &&
-       ((current_action == ADD && u->type == ADD && u->mark_begin_x == fs->current_x)) ||
-       (current_action == CUT && u->type == CUT && !u->mark_set && keeping_cutbuffer()))
+       ((current_action == ADD && u->type == ADD && u->mark_begin_x == fs->current_x) ||
+       (current_action == CUT && u->type == CUT && !u->mark_set && keeping_cutbuffer())))
        return;
     /* When trying to delete the final newline, don't add an undo for it. */
     if (current_action == DEL && openfile->current->next == openfile->filebot &&