diff --git a/etc/NEWS b/etc/NEWS index 49960291990..a8b5cd08ba5 100644 --- a/etc/NEWS +++ b/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 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))))