mu4e-helpers: fix mu4e-is-mode-or-derived-p

This commit is contained in:
Dirk-Jan C. Binnema 2022-07-05 00:11:34 +03:00
parent dc44165ada
commit 4a3069a5b5
1 changed files with 1 additions and 1 deletions

View File

@ -510,7 +510,7 @@ in an external program."
(defsubst mu4e-is-mode-or-derived-p (mode)
"Is the current mode equal to MODE or derived from it?"
(or (eq major-mode 'mode) (derived-mode-p mode)))
(or (eq major-mode mode) (derived-mode-p mode)))
(defun mu4e-display-manual ()
"Display the mu4e manual page for the current mode.