From: Eli Zaretskii Date: Sun, 1 Jan 2023 15:49:10 +0000 (+0200) Subject: ; * lisp/simple.el (primitive-undo): Clarify error message (bug#60467) X-Git-Tag: emacs-29.0.90~877 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=f12f72b0e09c7a45098955c1304499963a5eb9a7;p=emacs.git ; * lisp/simple.el (primitive-undo): Clarify error message (bug#60467) --- diff --git a/lisp/simple.el b/lisp/simple.el index 16f23ea3623..63479e9ce0a 100644 --- a/lisp/simple.el +++ b/lisp/simple.el @@ -3590,7 +3590,7 @@ Return what remains of the list." ;; said it would do. (unless (and (= start start-mark) (= (+ delta end) end-mark)) - (error "Changes to be undone by function different from announced")) + (error "Changes undone by function are different from the announced ones")) (set-marker start-mark nil) (set-marker end-mark nil)) (apply fun-args))