]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix the name of a kmacro command.
authorEli Zaretskii <eliz@gnu.org>
Tue, 17 May 2022 12:59:59 +0000 (15:59 +0300)
committerEli Zaretskii <eliz@gnu.org>
Tue, 17 May 2022 12:59:59 +0000 (15:59 +0300)
* lisp/kmacro.el (kmacro-redisplay): Rename from
'kdb-macro-redisplay' (which was wrong and included a typo).

* etc/NEWS: Announce the change.  (Bug#55471)

etc/NEWS
lisp/kmacro.el

index 49960291990de5391b12fdfba7ad4d0f07ec1ac8..a8b5cd08ba534df4560e7ab8a541a156c2dd12a5 100644 (file)
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -24,12 +24,17 @@ with a prefix argument or by typing 'C-u C-h C-n'.
 \f
 * Changes in Emacs 28.2
 
+This is a bug-fix release with no new features.
+
 \f
 * Editing Changes in Emacs 28.2
 
 \f
 * 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.
+
 \f
 * New Modes and Packages in Emacs 28.2
 
index 9bbaaa666dac5a20889401127bd12f362a7a1de9..6e35a6120b161f4740be3c447b0a9fdf244d25f1 100644 (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))))