* lisp/vc/diff-mode.el (diff-minor-mode-prefix): Replace "ESC" with "\e".
"ESC" looks like an attempt to use kbd syntax in customization. But actually now 'key-description' is used in 'diff-minor-mode-map' to convert "\e" to "ESC".
This commit is contained in:
parent
9263847ab7
commit
b69bffeec0
1 changed files with 1 additions and 2 deletions
|
@ -272,8 +272,7 @@ and hunk-based syntax highlighting otherwise as a fallback."
|
|||
|
||||
(defcustom diff-minor-mode-prefix "\C-c="
|
||||
"Prefix key for `diff-minor-mode' commands."
|
||||
:type '(choice (string "ESC")
|
||||
(string "\C-c=") string))
|
||||
:type '(choice (string "\e") (string "\C-c=") string))
|
||||
|
||||
(defvar-keymap diff-minor-mode-map
|
||||
:doc "Keymap for `diff-minor-mode'. See also `diff-mode-shared-map'."
|
||||
|
|
Loading…
Add table
Reference in a new issue