]> granicus.if.org Git - neomutt/commitdiff
clang-format
authorRichard Russon <rich@flatcap.org>
Mon, 23 Sep 2019 16:55:42 +0000 (17:55 +0100)
committerRichard Russon <rich@flatcap.org>
Mon, 23 Sep 2019 16:55:42 +0000 (17:55 +0100)
color.c
config/sort.c
mutt_parse.c
ncrypt/cryptglue.c

diff --git a/color.c b/color.c
index d9a23289b186408886723a0ad9bc0433716d37e1..4902f9cd434a9a7a033a51138930d4c8db158447 100644 (file)
--- a/color.c
+++ b/color.c
@@ -1137,7 +1137,8 @@ static enum CommandResult parse_color(struct Buffer *buf, struct Buffer *s,
       mutt_extract_token(&tmp, s, MUTT_TOKEN_NO_FLAGS);
       if (mutt_str_atoui(tmp.data, &match) < 0)
       {
-        mutt_buffer_printf(err, _("%s: invalid number: %s"), color ? "color" : "mono", tmp.data);
+        mutt_buffer_printf(err, _("%s: invalid number: %s"),
+                           color ? "color" : "mono", tmp.data);
         mutt_buffer_dealloc(&tmp);
         return MUTT_CMD_WARNING;
       }
index 199a27f0bb72d4305ab93e104d10ae3426044a36..b1ed0bf2db87f28656aef7b3145a737287f455a2 100644 (file)
@@ -31,8 +31,8 @@
 #include <stdint.h>
 #include <string.h>
 #include "mutt/mutt.h"
-#include "sort2.h"
 #include "set.h"
+#include "sort2.h"
 #include "types.h"
 
 // clang-format off
index 6cae4d61845415a90536782eb121cbb40672453a..9526526e33e4b7d6e259bc81003cda8dedefcbf6 100644 (file)
@@ -36,9 +36,9 @@
 #include "mx.h"
 #include "ncrypt/ncrypt.h"
 
-struct ListHead AttachAllow = STAILQ_HEAD_INITIALIZER(AttachAllow);     ///< List of attachment types to be counted
+struct ListHead AttachAllow = STAILQ_HEAD_INITIALIZER(AttachAllow); ///< List of attachment types to be counted
 struct ListHead AttachExclude = STAILQ_HEAD_INITIALIZER(AttachExclude); ///< List of attachment types to be ignored
-struct ListHead InlineAllow = STAILQ_HEAD_INITIALIZER(InlineAllow);     ///< List of inline types to counted
+struct ListHead InlineAllow = STAILQ_HEAD_INITIALIZER(InlineAllow); ///< List of inline types to counted
 struct ListHead InlineExclude = STAILQ_HEAD_INITIALIZER(InlineExclude); ///< List of inline types to ignore
 
 /**
index bb7e5dcfa03a3cd64cf71e0de10bdc108f5883c1..a4eb6f1887459200baec30efafebbaf3f627b0e8 100644 (file)
 #include "curs_lib.h"
 #endif
 #ifdef USE_AUTOCRYPT
+#include "email/lib.h"
 #include "autocrypt/autocrypt.h"
 #include "globals.h"
 #include "options.h"
-#include "email/lib.h"
 #endif
 
 struct Address;