diff options
author | Lars Ingebrigtsen <larsi@gnus.org> | 2021-10-18 18:55:48 +0200 |
---|---|---|
committer | Lars Ingebrigtsen <larsi@gnus.org> | 2021-10-19 04:36:05 +0200 |
commit | fbf7dd3ccecda778f6ea70d0ad6778b138e73e1d (patch) | |
tree | 370df4ed4d758b6b8fa7be94b029a8c1f3419ded /lisp/vc/diff-mode.el | |
parent | 34d4aca4d991c6c4483991852ebc30057b41a9fc (diff) | |
download | emacs-fbf7dd3ccecda778f6ea70d0ad6778b138e73e1d.tar.gz emacs-fbf7dd3ccecda778f6ea70d0ad6778b138e73e1d.tar.bz2 emacs-fbf7dd3ccecda778f6ea70d0ad6778b138e73e1d.zip |
Fix diff-mode-shared-map
* lisp/vc/diff-mode.el (diff-mode-shared-map): Fix syntax error in
`defvar-keymap' change.
Diffstat (limited to 'lisp/vc/diff-mode.el')
-rw-r--r-- | lisp/vc/diff-mode.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/vc/diff-mode.el b/lisp/vc/diff-mode.el index da70ff00dd7..ae1a8b254ff 100644 --- a/lisp/vc/diff-mode.el +++ b/lisp/vc/diff-mode.el @@ -164,7 +164,7 @@ and hunk-based syntax highlighting otherwise as a fallback." ;;;; (defvar-keymap diff-mode-shared-map - :inherit special-mode-map + :parent special-mode-map "n" #'diff-hunk-next "N" #'diff-file-next "p" #'diff-hunk-prev |