From: dickmao Date: Thu, 30 Sep 2021 04:59:10 +0000 (+0200) Subject: Fix bootstrap after recent undo-redo change X-Git-Tag: emacs-28.0.90~508 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=d94ab4949cdfda67cbd0d1aad9cadb030038b2b2;p=emacs.git Fix bootstrap after recent undo-redo change * lisp/bindings.el (global-map): Don't use `kbd' here -- it breaks bootstrap (bug#50911). --- diff --git a/lisp/bindings.el b/lisp/bindings.el index 9a3505058c4..ded5e27dbdc 100644 --- a/lisp/bindings.el +++ b/lisp/bindings.el @@ -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)