]> granicus.if.org Git - neomutt/commitdiff
Add spaces after "References:" and "In-Reply-To:"
authorJakub Wilk <jwilk@jwilk.net>
Thu, 14 Dec 2017 15:20:24 +0000 (16:20 +0100)
committerRichard Russon <rich@flatcap.org>
Thu, 14 Dec 2017 17:26:53 +0000 (17:26 +0000)
sendlib.c

index 9896901af2b16f6af95096ebc75715a2a561d53f..1a06c695a0845a0215b192abfd9d0d9837b4d2fb 100644 (file)
--- a/sendlib.c
+++ b/sendlib.c
@@ -1653,7 +1653,7 @@ void mutt_write_address_list(struct Address *adr, FILE *fp, int linelen, int dis
 #define REF_INC 16
 
 /**
- * mutt_write_references - Add the message refrerences to a list
+ * mutt_write_references - Add the message references to a list
  *
  * need to write the list in reverse because they are stored in reverse order
  * when parsed to speed up threading
@@ -1682,8 +1682,7 @@ void mutt_write_references(const struct ListHead *r, FILE *f, size_t trim)
 
   for (size_t i = 0; i < length; ++i)
   {
-    if (i != 0)
-      fputc(' ', f);
+    fputc(' ', f);
     fputs(ref[i]->data, f);
     if (i != length - 1)
       fputc('\n', f);