diff --git a/mu4e/mu4e-main.el b/mu4e/mu4e-main.el index f73a6223..89654310 100644 --- a/mu4e/mu4e-main.el +++ b/mu4e/mu4e-main.el @@ -105,11 +105,9 @@ clicked." ;; show some server properties; in this case; a big C when there's ;; crypto support " " - (when (plist-get mu4e~server-props :crypto) - (propertize "C" 'face 'mu4e-title-face)) - "" - - + (if (plist-get mu4e~server-props :crypto) + (propertize "C" 'face 'mu4e-title-face) + "") "\n\n" (propertize " Basics\n\n" 'face 'mu4e-title-face) (mu4e~main-action-str "\t* [j]ump to some maildir\n" 'mu4e-jump-to-maildir)