aboutsummaryrefslogtreecommitdiff
path: root/lib/thread.cc
diff options
context:
space:
mode:
authorLars Kotthoff <larsko@uwyo.edu>2023-12-22 14:06:34 -0700
committerDavid Bremner <david@tethera.net>2024-07-26 15:59:11 +0900
commitd34720e7b35da771d9a06ee8dbdc158680684e99 (patch)
treedbee65525861e729f77042b84f678c9b9ef81e2e /lib/thread.cc
parent199e2de224440833d07665e4cf779a88f3d52863 (diff)
config: allow custom separators in author lists
Allow distinguishing between commas separating authors and separating first and last names. Amended by db: reformat NEWS entry and commit message. Tweaked whitespace in lib/thread.cc.
Diffstat (limited to 'lib/thread.cc')
-rw-r--r--lib/thread.cc19
1 files changed, 14 insertions, 5 deletions
diff --git a/lib/thread.cc b/lib/thread.cc
index 60e9a666..168a9e8b 100644
--- a/lib/thread.cc
+++ b/lib/thread.cc
@@ -122,21 +122,28 @@ _thread_add_matched_author (notmuch_thread_t *thread,
/* Construct an authors string from matched_authors_array and
* authors_array. The string contains matched authors first, then
- * non-matched authors (with the two groups separated by '|'). Within
- * each group, authors are listed in date order. */
+ * non-matched authors (with the two groups separated by '|' or the custom
+ * separator defined in the configuration). Within each group, authors are
+ * listed in date order and separated by ',' or the custom separator defined in
+ * the configuration. */
static void
_resolve_thread_authors_string (notmuch_thread_t *thread)
{
unsigned int i;
char *author;
int first_non_matched_author = 1;
+ const char *authors_sep = notmuch_config_get (thread->notmuch,
+ NOTMUCH_CONFIG_AUTHORS_SEPARATOR);
+ const char *authors_matched_sep = notmuch_config_get (thread->notmuch,
+ NOTMUCH_CONFIG_AUTHORS_MATCHED_SEPARATOR);
/* First, list all matched authors in date order. */
for (i = 0; i < thread->matched_authors_array->len; i++) {
author = (char *) g_ptr_array_index (thread->matched_authors_array, i);
if (thread->authors)
- thread->authors = talloc_asprintf (thread, "%s, %s",
+ thread->authors = talloc_asprintf (thread, "%s%s%s",
thread->authors,
+ authors_sep,
author);
else
thread->authors = author;
@@ -149,12 +156,14 @@ _resolve_thread_authors_string (notmuch_thread_t *thread)
author, NULL, NULL))
continue;
if (first_non_matched_author) {
- thread->authors = talloc_asprintf (thread, "%s| %s",
+ thread->authors = talloc_asprintf (thread, "%s%s%s",
thread->authors,
+ authors_matched_sep,
author);
} else {
- thread->authors = talloc_asprintf (thread, "%s, %s",
+ thread->authors = talloc_asprintf (thread, "%s%s%s",
thread->authors,
+ authors_sep,
author);
}