]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix emacs-news-view-mode-map inheritance
authorLars Ingebrigtsen <larsi@gnus.org>
Fri, 12 Aug 2022 15:44:51 +0000 (17:44 +0200)
committerLars Ingebrigtsen <larsi@gnus.org>
Fri, 12 Aug 2022 15:44:59 +0000 (17:44 +0200)
* lisp/textmodes/emacs-news-mode.el (emacs-news-view-mode-map):
Fix inheritance from `special-mode-map' (bug#57100).

lisp/textmodes/emacs-news-mode.el

index e6e1f0372840591ce17eea69a330d4a9173f62fa..9afa7ead98def11b6c894eb5e9bbc8e0bef31163 100644 (file)
   "C-x C-q" #'emacs-news-view-mode
   "<remap> <open-line>" #'emacs-news-open-line)
 
-(defvar-keymap emacs-news-view-mode-map
-  :parent emacs-news-common-map
-  "C-x C-q" #'emacs-news-mode)
+(defvar emacs-news-view-mode-map
+  ;; This is defined this way instead of inheriting because we're
+  ;; deriving the mode from `special-mode' and want the keys from there.
+  (let ((map (copy-keymap emacs-news-common-map)))
+    (keymap-set map "C-x C-q" #'emacs-news-mode)
+    map))
 
 (defvar emacs-news-mode-font-lock-keywords
   `(("^---$" 0 'emacs-news-does-not-need-documentation)