aboutsummaryrefslogtreecommitdiffstats
path: root/_spacemacs.d/local/mu4e/mu4e-main.el
diff options
context:
space:
mode:
Diffstat (limited to '_spacemacs.d/local/mu4e/mu4e-main.el')
-rw-r--r--_spacemacs.d/local/mu4e/mu4e-main.el10
1 files changed, 5 insertions, 5 deletions
diff --git a/_spacemacs.d/local/mu4e/mu4e-main.el b/_spacemacs.d/local/mu4e/mu4e-main.el
index 0f4dc78..a647a2d 100644
--- a/_spacemacs.d/local/mu4e/mu4e-main.el
+++ b/_spacemacs.d/local/mu4e/mu4e-main.el
@@ -137,11 +137,11 @@ clicked."
;; TODO: it's a bit uncool to hard-code the "b" shortcut...
(mapconcat
(lambda (bm)
- (let* ((query (nth 0 bm)) (title (nth 1 bm)) (key (nth 2 bm)))
- (mu4e~main-action-str
- (concat "\t* [b" (make-string 1 key) "] " title)
- (concat "b" (make-string 1 key)))))
- mu4e-bookmarks "\n")
+ (mu4e~main-action-str
+ (concat "\t* [b" (make-string 1 (mu4e-bookmark-key bm)) "] "
+ (mu4e-bookmark-name bm))
+ (concat "b" (make-string 1 (mu4e-bookmark-key bm)))))
+ (mu4e-bookmarks) "\n")
"\n\n"
(propertize " Misc\n\n" 'face 'mu4e-title-face)