]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix bootstrap after recent undo-redo change
authordickmao <none>
Thu, 30 Sep 2021 04:59:10 +0000 (06:59 +0200)
committerLars Ingebrigtsen <larsi@gnus.org>
Thu, 30 Sep 2021 04:59:10 +0000 (06:59 +0200)
* lisp/bindings.el (global-map): Don't use `kbd' here -- it breaks
bootstrap (bug#50911).

lisp/bindings.el

index 9a3505058c414e897c93cd0ed07143aa143df78a..ded5e27dbdc5acd6579683c9bcb5db79ee9b9884 100644 (file)
@@ -994,7 +994,7 @@ if `inhibit-field-text-motion' is non-nil."
   "Keymap to repeat undo key sequences `C-x u u'.  Used in `repeat-mode'.")
 (put 'undo 'repeat-map 'undo-repeat-map)
 
-(define-key global-map (kbd "C-?") 'undo-redo)
+(define-key global-map "\C-?" 'undo-redo)
 (define-key global-map [?\C-\M-_] 'undo-redo)
 
 (define-key esc-map "!" 'shell-command)