From: len@realtimegenomics.com Date: Tue, 18 Mar 2025 05:23:40 +0000 (+0000) Subject: emacs: fix disabling notmuch-show-header-line via custom X-Git-Url: https://git.notmuchmail.org/git?a=commitdiff_plain;h=d5ab2f0c02da4415e8775847ebc01559c9652e4c;p=notmuch emacs: fix disabling notmuch-show-header-line via custom The defcustom had a typo that prevented it from working as intended. --- diff --git a/emacs/notmuch-show.el b/emacs/notmuch-show.el index 8a8e6a7b..19b51753 100644 --- a/emacs/notmuch-show.el +++ b/emacs/notmuch-show.el @@ -104,7 +104,7 @@ notmuch-show functions such as Finally, if this variable is set to nil, no header is displayed." - :type '(choice (const :tag "No header" ni) + :type '(choice (const :tag "No header" nil) (const :tag "Subject" t) (string :tag "Format") (function :tag "Function"))