; * lisp/simple.el (primitive-undo): Clarify error message (bug#60467)

This commit is contained in:
Eli Zaretskii 2023-01-01 17:49:10 +02:00
parent 7fd822e7f5
commit f12f72b0e0

View file

@ -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))