summaryrefslogtreecommitdiff
path: root/lisp/bindings.el
diff options
context:
space:
mode:
authorGlenn Morris <rgm@gnu.org>2021-08-20 15:56:27 -0700
committerGlenn Morris <rgm@gnu.org>2021-08-20 15:56:27 -0700
commit222d033254e1c0c918f3dec523517f3192bc7086 (patch)
tree36bd08365869fb463715b92576d6fdedfaf564fd /lisp/bindings.el
parent13824c44d28427931a7e3284adec9a3a38cd2323 (diff)
downloademacs-222d033254e1c0c918f3dec523517f3192bc7086.tar.gz
* lisp/bindings.el (page-navigation-repeat-map): Fix bootstrap.
Diffstat (limited to 'lisp/bindings.el')
-rw-r--r--lisp/bindings.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/bindings.el b/lisp/bindings.el
index b67c6ad6382..b8bf0c1a6f6 100644
--- a/lisp/bindings.el
+++ b/lisp/bindings.el
@@ -1437,8 +1437,8 @@ if `inhibit-field-text-motion' is non-nil."
(defvar page-navigation-repeat-map
(let ((map (make-sparse-keymap)))
- (define-key map (kbd "]") #'forward-page)
- (define-key map (kbd "[") #'backward-page)
+ (define-key map "]" #'forward-page)
+ (define-key map "[" #'backward-page)
map)
"Keymap to repeat page navigation key sequences. Used in `repeat-mode'.")