diff options
author | Lars Ingebrigtsen <larsi@gnus.org> | 2022-05-17 20:02:59 +0200 |
---|---|---|
committer | Lars Ingebrigtsen <larsi@gnus.org> | 2022-05-17 20:02:59 +0200 |
commit | 7dc026f9ea1452ed0ca135c6b9062f778c76e6ba (patch) | |
tree | 6faeeaeb59c9cc45f9a6a8cae691546f720a4212 /lisp/kmacro.el | |
parent | 4f0fd54bc476dc776d15f35a827e437716663030 (diff) | |
download | emacs-7dc026f9ea1452ed0ca135c6b9062f778c76e6ba.tar.gz emacs-7dc026f9ea1452ed0ca135c6b9062f778c76e6ba.tar.bz2 emacs-7dc026f9ea1452ed0ca135c6b9062f778c76e6ba.zip |
Fix kmacro-keymap binding after previous change
* lisp/kmacro.el (kmacro-keymap): Fix binding after
kmacro-redisplay command name change.
Diffstat (limited to 'lisp/kmacro.el')
-rw-r--r-- | lisp/kmacro.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/kmacro.el b/lisp/kmacro.el index 6e35a6120b1..7478e97134f 100644 --- a/lisp/kmacro.el +++ b/lisp/kmacro.el @@ -172,7 +172,7 @@ macro to be executed before appending to it." (define-key map "\C-k" #'kmacro-end-or-call-macro-repeat) (define-key map "r" #'apply-macro-to-region-lines) (define-key map "q" #'kbd-macro-query) ;; Like C-x q - (define-key map "d" #'kdb-macro-redisplay) + (define-key map "d" #'kmacro-redisplay) ;; macro ring (define-key map "\C-n" #'kmacro-cycle-ring-next) |