diff options
author | Eli Zaretskii <eliz@gnu.org> | 2022-05-17 15:59:59 +0300 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2022-05-17 15:59:59 +0300 |
commit | af1c05a3c4a71f57317837d72f38b2ee703eea71 (patch) | |
tree | 53e7265915dab71205c9ab2839aec46078e31633 /lisp/kmacro.el | |
parent | fa6a0962c5315cceb3632fa6a701eac986940810 (diff) | |
download | emacs-af1c05a3c4a71f57317837d72f38b2ee703eea71.tar.gz emacs-af1c05a3c4a71f57317837d72f38b2ee703eea71.tar.bz2 emacs-af1c05a3c4a71f57317837d72f38b2ee703eea71.zip |
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)
Diffstat (limited to 'lisp/kmacro.el')
-rw-r--r-- | lisp/kmacro.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/kmacro.el b/lisp/kmacro.el index 9bbaaa666da..6e35a6120b1 100644 --- a/lisp/kmacro.el +++ b/lisp/kmacro.el @@ -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)))) |