diff options
author | Mark Walters <markwalters1009@gmail.com> | 2013-12-19 19:12:23 +0000 |
---|---|---|
committer | David Bremner <david@tethera.net> | 2014-01-13 14:12:29 -0400 |
commit | 719391f09a17d0e18772a51f5730e1b00fcce077 (patch) | |
tree | a0e3af4b281bcbd2f50edf95e3a4a5d6cf1b4c1a /emacs | |
parent | a7e072f2773cffa35ddcb5a3c6dc4563917cc93f (diff) |
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.
Diffstat (limited to 'emacs')
-rw-r--r-- | emacs/notmuch-tree.el | 2 |
1 files changed, 1 insertions, 1 deletions
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)))))) |