diff --git a/mu4e/mu4e-compose.el b/mu4e/mu4e-compose.el index 32d238d6..07e37985 100644 --- a/mu4e/mu4e-compose.el +++ b/mu4e/mu4e-compose.el @@ -149,7 +149,7 @@ Also see `mu4e-context-policy'." We have the following choices: - `sign': sign the reply -- `sign-and-encrypt': sign and encrypt the repy +- `sign-and-encrypt': sign and encrypt the reply - `encrypt': encrypt the reply, but don't sign it. - anything else: do nothing." :type '(choice diff --git a/mu4e/mu4e-context.el b/mu4e/mu4e-context.el index f5f8fff9..c506f566 100644 --- a/mu4e/mu4e-context.el +++ b/mu4e/mu4e-context.el @@ -47,7 +47,7 @@ describing mu4e's contexts.") (if (mu4e-context-current) (concat "[" (propertize (mu4e~quote-for-modeline (mu4e-context-name (mu4e-context-current))) - 'face 'mu4e-title-face) "]") "")) + 'face 'mu4e-context-face) "]") "")) (defstruct mu4e-context "A mu4e context object with the following members: diff --git a/mu4e/mu4e-vars.el b/mu4e/mu4e-vars.el index e07b1963..fe503449 100644 --- a/mu4e/mu4e-vars.el +++ b/mu4e/mu4e-vars.el @@ -583,6 +583,11 @@ I.e. a message with the draft flag set." "Face for a header title in the headers view." :group 'mu4e-faces) +(defface mu4e-context-face + '((t :inherit mu4e-title-face :bold t)) + "Face for displaying the context in the modeline." + :group 'mu4e-faces) + (defface mu4e-modeline-face '((t :inherit font-lock-string-face :bold t)) "Face for the query in the mode-line."