projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
dc94ca7
)
Fix bootstrap after recent undo-redo change
author
dickmao
<none>
Thu, 30 Sep 2021 04:59:10 +0000
(06:59 +0200)
committer
Lars 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
patch
|
blob
|
history
diff --git
a/lisp/bindings.el
b/lisp/bindings.el
index 9a3505058c414e897c93cd0ed07143aa143df78a..ded5e27dbdc5acd6579683c9bcb5db79ee9b9884 100644
(file)
--- 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)