emacs: don't fset keymaps

These keymaps are never invoked as commands
so the function definitions serve no purpose.
This commit is contained in:
Jonas Bernoulli 2020-11-08 20:02:48 +01:00 committed by David Bremner
parent b9f328b75d
commit 05a436f730
3 changed files with 0 additions and 3 deletions

View file

@ -1485,7 +1485,6 @@ reset based on the original query."
(define-key map "B" 'notmuch-show-browse-urls)
map)
"Keymap for \"notmuch show\" buffers.")
(fset 'notmuch-show-mode-map notmuch-show-mode-map)
(define-derived-mode notmuch-show-mode fundamental-mode "notmuch-show"
"Major mode for viewing a thread with notmuch.

View file

@ -361,7 +361,6 @@ FUNC."
(define-key map "e" 'notmuch-tree-resume-message)
map)
"Keymap for \"notmuch tree\" buffers.")
(fset 'notmuch-tree-mode-map notmuch-tree-mode-map)
(defun notmuch-tree-get-message-properties ()
"Return the properties of the current message as a plist.

View file

@ -194,7 +194,6 @@ there will be called at other points of notmuch execution."
(define-key map "U" 'notmuch-unthreaded-from-search-current-query)
map)
"Keymap for \"notmuch search\" buffers.")
(fset 'notmuch-search-mode-map notmuch-search-mode-map)
(defvar notmuch-search-stash-map
(let ((map (make-sparse-keymap)))