]> git.wh0rd.org Git - nano.git/commitdiff
* text.c (add_undo): Fix check for multi-line cut check skips adding other...
authorChris Allegretta <chrisa@asty.org>
Sat, 9 Aug 2008 10:08:33 +0000 (10:08 +0000)
committerChris Allegretta <chrisa@asty.org>
Sat, 9 Aug 2008 10:08:33 +0000 (10:08 +0000)
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@4300 35c25a1d-7b9e-4130-9fde-d3aeb78583b8

ChangeLog
src/text.c

index 0b055bc91684630c43b59a3ebe690f5aad5fd5e6..2ebe5a45d39b1c05ff6b20aa972f5d5c1c9a767d 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -2,6 +2,7 @@
        * files.c (write_file): Do not go on and attempt to write the main file if writing the backup file failed,
          related to Savannah bug 24000.
        * text.c (do_redo): Fix improperly restoring the text when redoing a line split.
+        * text.c (add_undo): Fix check for multi-line cut check skips adding other new legit events.
 
 2008-07-23 Chris Allegretta <chrisa@asty.org>
        * text.c: Reset openfile-> to OTHER after an undo or redo so we don't mistakenly
index 041e58f92a890fe45d2233f5917f1066ae81e3e0..f4892c35d691220830780afba09685b4b7c6a2e6 100644 (file)
@@ -806,7 +806,8 @@ void add_undo(undo_type current_action)
     /* Ugh, if we were called while cutting not-to-end, non-marked and on the same lineno,
        we need to  abort here */
     u = fs->current_undo;
-    if (u && u->type == CUT && !u->mark_set && u->lineno == fs->current->lineno)
+    if (current_action == CUT && u && u->type == CUT 
+       && !u->mark_set && u->lineno == fs->current->lineno)
        return;
 
     /* Blow away the old undo stack if we are starting from the middle */