From 719391f09a17d0e18772a51f5730e1b00fcce077 Mon Sep 17 00:00:00 2001 From: Mark Walters Date: Thu, 19 Dec 2013 19:12:23 +0000 Subject: emacs: tree remove comma separator tags Previously the tags on each line in tree view were separarted by ", " not just " ". This is different from show and search views. This patch removes this comma. This is a large patch as essentially every line of each of the expected outputs in the tree tests needs updating. Apart from aesthetic reasons this simplifies the switch to notmuch-tag-format-tags in the next patch. --- emacs/notmuch-tree.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'emacs') diff --git a/emacs/notmuch-tree.el b/emacs/notmuch-tree.el index 1dde9a7a..0ce7fa85 100644 --- a/emacs/notmuch-tree.el +++ b/emacs/notmuch-tree.el @@ -693,7 +693,7 @@ unchanged ADDRESS if parsing fails." 'notmuch-tree-match-tag-face 'notmuch-tree-no-match-tag-face))) (propertize (format format-string - (mapconcat #'identity tags ", ")) + (mapconcat #'identity tags " ")) 'face face)))))) -- cgit v1.2.3