]> granicus.if.org Git - neomutt/commitdiff
improve readability of find_subject()
authortoogley <toogley@mailbox.org>
Sun, 5 Feb 2017 12:17:12 +0000 (13:17 +0100)
committerRichard Russon <rich@flatcap.org>
Sun, 5 Feb 2017 15:41:26 +0000 (15:41 +0000)
thread.c

index ea18c79e409c96e07e40ab291fa1beedf7ca0e11..348bd27a57aca1696e880fe7b6dfe64283bf77a9 100644 (file)
--- a/thread.c
+++ b/thread.c
@@ -442,7 +442,9 @@ static THREAD *find_subject (CONTEXT *ctx, THREAD *cur)
            (last->message->date_sent < tmp->message->date_sent))) &&
          tmp->message->env->real_subj &&
          mutt_strcmp (subjects->data, tmp->message->env->real_subj) == 0)
-       last = tmp; /* best match so far */
+      {
+        last = tmp; /* best match so far */
+      }
     }
 
     oldlist = subjects;