mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-05 22:20:24 -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:
parent
fa6a0962c5
commit
af1c05a3c4
2 changed files with 8 additions and 3 deletions
5
etc/NEWS
5
etc/NEWS
|
|
@ -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
|
||||
|
||||
|
|
|
|||
|
|
@ -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))))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue