mu4e: make mu4e-bookmarks items simple plists
We don't need cl-defstruct; simplify things a bit.
This commit is contained in:
@ -143,9 +143,9 @@ clicked."
|
||||
(mapconcat
|
||||
(lambda (bm)
|
||||
(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)))))
|
||||
(concat "\t* [b" (make-string 1 (plist-get bm :key)) "] "
|
||||
(plist-get bm :name))
|
||||
(concat "b" (make-string 1 (plist-get bm :key)))))
|
||||
(mu4e-bookmarks) "\n")
|
||||
"\n\n"
|
||||
(propertize " Misc\n\n" 'face 'mu4e-title-face)
|
||||
|
||||
Reference in New Issue
Block a user