From fb4ded1cc9de716b0e8d8b6dacce2417a9c421cb Mon Sep 17 00:00:00 2001 From: Carl Worth Date: Tue, 23 Nov 2010 17:58:00 -0800 Subject: [PATCH] notmuch search: Fix missing final newline in "notmuch search --output=tags" As mentioned in the recent test commits, this also fixes the missing '[' and ']' characters in the --format=json variant of "notmuch search --output=tags" as well. --- notmuch-search.c | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/notmuch-search.c b/notmuch-search.c index bb989dac..c628b369 100644 --- a/notmuch-search.c +++ b/notmuch-search.c @@ -319,7 +319,9 @@ do_search_tags (const void *ctx, { tag = notmuch_tags_get (tags); - if (! first_tag) + if (first_tag) + fputs (format->results_start, stdout); + else fputs (format->item_sep, stdout); format->item_id (ctx, "", tag); @@ -332,6 +334,9 @@ do_search_tags (const void *ctx, if (messages) notmuch_messages_destroy (messages); + if (! first_tag) + fputs (format->results_end, stdout); + return 0; } -- 2.43.0