diff options
author | Lars Ingebrigtsen <larsi@gnus.org> | 2021-09-22 21:56:31 +0200 |
---|---|---|
committer | Lars Ingebrigtsen <larsi@gnus.org> | 2021-09-22 21:56:31 +0200 |
commit | efdb89f15b4d0dae334952bfe11073534e244d75 (patch) | |
tree | 9076696c0251ad7506a16e94f9615d4aa6ef3053 /lisp/kmacro.el | |
parent | aebba085cba13ad1439462923ffa0520456f1aad (diff) | |
download | emacs-efdb89f15b4d0dae334952bfe11073534e244d75.tar.gz emacs-efdb89f15b4d0dae334952bfe11073534e244d75.tar.bz2 emacs-efdb89f15b4d0dae334952bfe11073534e244d75.zip |
Move 'kdb-macro-redisplay' key binding
* doc/emacs/kmacro.texi (Basic Keyboard Macro): Adjust.
* lisp/kmacro.el (kmacro-keymap): Move 'kdb-macro-redisplay' to
`C-x C-k d' since upper-case letters are reserved for users (bug#50727).
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 53e6e5e288a..bb41a962c3a 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 "Q" #'kdb-macro-redisplay) + (define-key map "d" #'kdb-macro-redisplay) ;; macro ring (define-key map "\C-n" #'kmacro-cycle-ring-next) |