1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-15 10:30:25 -08:00

* lisp/simple.el (undo-redo): Doc fix.

This commit is contained in:
Eli Zaretskii 2020-09-11 08:56:51 +03:00
parent 8cf274f960
commit e2391d486e

View file

@ -2752,7 +2752,8 @@ Contrary to `undo', this will not redo a previous undo."
(let ((undo-no-redo t)) (undo arg)))
(defun undo-redo (&optional arg)
"Undo the last ARG undos."
"Undo the last ARG undos, i.e., redo the last ARG changes.
Interactively, ARG is the prefix numeric argument and defaults to 1."
(interactive "*p")
(cond
((not (undo--last-change-was-undo-p buffer-undo-list))