From 401f30ee26691bdcf6741e17b1ef6ceac376314e Mon Sep 17 00:00:00 2001 From: djcb Date: Sun, 16 Jun 2013 23:01:06 +0300 Subject: [PATCH] * mu4e: workaround(?) for the issue with '*' in the main action strings --- mu4e/mu4e-main.el | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/mu4e/mu4e-main.el b/mu4e/mu4e-main.el index 48d7a101..bb65443b 100644 --- a/mu4e/mu4e-main.el +++ b/mu4e/mu4e-main.el @@ -48,8 +48,8 @@ ;; (define-key map "U" 'mu4e-update-mail-and-index) (define-key map (kbd "C-S-u") 'mu4e-update-mail-and-index) - - + + (define-key map "$" 'mu4e-show-log) (define-key map "A" 'mu4e-about) (define-key map "H" 'mu4e-display-manual) @@ -79,7 +79,7 @@ clicked." "\\[\\(\\w+\\)\\]" (lambda(m) (format "[%s]" - (propertize (match-string 1 str) 'face 'mu4e-highlight-face))) + (propertize (match-string 1 m) 'face 'mu4e-highlight-face))) str)) (map (make-sparse-keymap)) (func (if (functionp func-or-shortcut)