mu4e-actions: ensure empty tag removal on message retagging.
This commit is contained in:
@ -215,7 +215,7 @@ would add \"tag\" and \"long tag\", and remove \"oldtag\"."
|
||||
(t
|
||||
(setq taglist (push tag taglist)))))
|
||||
|
||||
(setq taglist (sort (delete-dups taglist) 'string<))
|
||||
(setq taglist (delete "" (sort (delete-dups taglist) 'string<)))
|
||||
(setq tagstr (mapconcat 'identity taglist sep))
|
||||
|
||||
(setq tagstr (replace-regexp-in-string "[\\&]" "\\\\\\&" tagstr))
|
||||
|
||||
Reference in New Issue
Block a user