1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-06 06:20:55 -08:00

Fix the name of a kmacro command.

* lisp/kmacro.el (kmacro-redisplay): Rename from
'kdb-macro-redisplay' (which was wrong and included a typo).

* etc/NEWS: Announce the change.  (Bug#55471)
This commit is contained in:
Eli Zaretskii 2022-05-17 15:59:59 +03:00
parent fa6a0962c5
commit af1c05a3c4
2 changed files with 8 additions and 3 deletions

View file

@ -24,12 +24,17 @@ with a prefix argument or by typing 'C-u C-h C-n'.
* Changes in Emacs 28.2
This is a bug-fix release with no new features.
* Editing Changes in Emacs 28.2
* Changes in Specialized Modes and Packages in Emacs 28.2
** The command 'kdb-macro-redisplay' was renamed to 'kmacro-redisplay'.
This is to fix an embarrassing typo in the original name.
* New Modes and Packages in Emacs 28.2

View file

@ -1344,12 +1344,12 @@ To customize possible responses, change the \"bindings\" in
(kmacro-push-ring)
(setq last-kbd-macro kmacro-step-edit-new-macro))))
(defun kdb-macro-redisplay ()
"Force redisplay during kbd macro execution."
(defun kmacro-redisplay ()
"Force redisplay during keyboard macro execution."
(interactive)
(or executing-kbd-macro
defining-kbd-macro
(user-error "Not defining or executing kbd macro"))
(user-error "Not defining or executing keyboard macro"))
(when executing-kbd-macro
(let ((executing-kbd-macro nil))
(redisplay))))