From ace830f2845a05418d2e8cc11d0fefd6f75f0524 Mon Sep 17 00:00:00 2001 From: djcb Date: Mon, 3 Sep 2012 10:29:34 +0300 Subject: [PATCH] * mu4e: small fix --- mu4e/mu4e-main.el | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) 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)