aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLars Ingebrigtsen2021-10-18 18:55:48 +0200
committerLars Ingebrigtsen2021-10-19 04:36:05 +0200
commitfbf7dd3ccecda778f6ea70d0ad6778b138e73e1d (patch)
tree370df4ed4d758b6b8fa7be94b029a8c1f3419ded
parent34d4aca4d991c6c4483991852ebc30057b41a9fc (diff)
downloademacs-fbf7dd3ccecda778f6ea70d0ad6778b138e73e1d.tar.gz
emacs-fbf7dd3ccecda778f6ea70d0ad6778b138e73e1d.zip
Fix diff-mode-shared-map
* lisp/vc/diff-mode.el (diff-mode-shared-map): Fix syntax error in `defvar-keymap' change.
-rw-r--r--lisp/vc/diff-mode.el2
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."
164;;;; 164;;;;
165 165
166(defvar-keymap diff-mode-shared-map 166(defvar-keymap diff-mode-shared-map
167 :inherit special-mode-map 167 :parent special-mode-map
168 "n" #'diff-hunk-next 168 "n" #'diff-hunk-next
169 "N" #'diff-file-next 169 "N" #'diff-file-next
170 "p" #'diff-hunk-prev 170 "p" #'diff-hunk-prev