]> git.eshelyaron.com Git - emacs.git/commitdiff
* lisp/subr.el (cancel-change-group): Undo accidental change
authorStefan Monnier <monnier@iro.umontreal.ca>
Thu, 12 Mar 2020 14:03:14 +0000 (10:03 -0400)
committerStefan Monnier <monnier@iro.umontreal.ca>
Thu, 12 Mar 2020 14:03:14 +0000 (10:03 -0400)
lisp/subr.el

index 359f51c0d0c78d9c2cf5339e10b4aa473df1c594..9c80c06a1278f7ef0340d8eea4b7ffc4bda7840f 100644 (file)
@@ -2987,14 +2987,13 @@ This finishes the change group by reverting all of its changes."
        ;; the body of `atomic-change-group' all changes can be undone.
        (widen)
        (let ((old-car (car-safe elt))
-             (old-cdr (cdr-safe elt))
-             (start-pul pending-undo-list))
+             (old-cdr (cdr-safe elt)))
           (unwind-protect
               (progn
                 ;; Temporarily truncate the undo log at ELT.
                 (when (consp elt)
                   (setcar elt nil) (setcdr elt nil))
-                (setq pending-undo-list buffer-undo-list)
+                (unless (eq last-command 'undo) (undo-start))
                 ;; Make sure there's no confusion.
                 (when (and (consp elt) (not (eq elt (last pending-undo-list))))
                   (error "Undoing to some unrelated state"))
@@ -3007,13 +3006,7 @@ This finishes the change group by reverting all of its changes."
             ;; Reset the modified cons cell ELT to its original content.
             (when (consp elt)
               (setcar elt old-car)
-              (setcdr elt old-cdr)))
-          ;; Let's not break a sequence of undos just because we
-          ;; tried to make a change and then undid it: preserve
-          ;; the original `pending-undo-list' if it's still valid.
-          (if (eq (undo--last-change-was-undo-p buffer-undo-list)
-                  start-pul)
-              (setq pending-undo-list start-pul)))))))
+              (setcdr elt old-cdr))))))))
 \f
 ;;;; Display-related functions.