]> granicus.if.org Git - neomutt/commitdiff
clang-format
authorRichard Russon <rich@flatcap.org>
Sat, 30 Dec 2017 16:38:33 +0000 (16:38 +0000)
committerRichard Russon <rich@flatcap.org>
Sun, 31 Dec 2017 00:21:15 +0000 (00:21 +0000)
curs_main.c
main.c
mutt/regex.c
ncrypt/crypt.c
pattern.c
recvcmd.c

index eaf34f02c111188a4f34e29f16bc818f7de02066..375f0e79a1de1084957b372d4672bd9f3f70418a 100644 (file)
@@ -497,7 +497,8 @@ static int main_change_folder(struct Menu *menu, int op, char *buf,
    * switch statement would need to be run. */
   mutt_folder_hook(buf);
 
-  Context = mx_open_mailbox(buf, (ReadOnly || (op == OP_MAIN_CHANGE_FOLDER_READONLY)) ? MUTT_READONLY : 0, NULL);
+  Context = mx_open_mailbox(
+      buf, (ReadOnly || (op == OP_MAIN_CHANGE_FOLDER_READONLY)) ? MUTT_READONLY : 0, NULL);
   if (Context)
   {
     menu->current = ci_first_message();
diff --git a/main.c b/main.c
index 782afd19c5244f0fb83dbc08f0d5299b4314c209..7477be0ab3d3bca1b9d6718fafd1fa259c44e2c5 100644 (file)
--- a/main.c
+++ b/main.c
@@ -917,7 +917,8 @@ int main(int argc, char **argv, char **env)
     mutt_folder_hook(folder);
     mutt_startup_shutdown_hook(MUTT_STARTUPHOOK);
 
-    Context = mx_open_mailbox(folder, ((flags & MUTT_RO) || ReadOnly) ? MUTT_READONLY : 0, NULL);
+    Context = mx_open_mailbox(
+        folder, ((flags & MUTT_RO) || ReadOnly) ? MUTT_READONLY : 0, NULL);
     if (Context || !explicit_folder)
     {
 #ifdef USE_SIDEBAR
index 1c786a9a782cf192e1f4b8748ffd2f373847cc75..7c737b5cb6b7c7c13553d8838e584d7aec62f264 100644 (file)
@@ -532,7 +532,8 @@ bool mutt_replacelist_match(struct ReplaceList *rl, char *buf, size_t buflen, co
     }
 
     /* Does this pattern match? */
-    if (regexec(rl->regex->regex, str, (size_t) rl->nmatch, (regmatch_t *) pmatch, (int) 0) == 0)
+    if (regexec(rl->regex->regex, str, (size_t) rl->nmatch,
+                (regmatch_t *) pmatch, (int) 0) == 0)
     {
       mutt_debug(5, "%s matches %s\n", str, rl->regex->pattern);
       mutt_debug(5, "%d subs\n", (int) rl->regex->regex->re_nsub);
index 18bfc8aaf1f22d2831a2a88c53b0fa3c23fc7d1b..26389a55bf122a6e87042e693805ea303ff3ffc7 100644 (file)
@@ -449,7 +449,7 @@ int mutt_is_application_pgp(struct Body *m)
     {
       p = mutt_param_get("x-action", m->parameter);
       if (p && ((mutt_str_strcasecmp(p, "sign") == 0) ||
-          (mutt_str_strcasecmp(p, "signclear") == 0)))
+                (mutt_str_strcasecmp(p, "signclear") == 0)))
         t |= PGPSIGN;
 
       p = mutt_param_get("format", m->parameter);
index ce15ae1946131ab902f434d8b99f5c7d2e30706a..d34fbb7cd10fb7b7f11b5a0c8b4dfcae862ebbd5 100644 (file)
--- a/pattern.c
+++ b/pattern.c
@@ -37,7 +37,6 @@
 #include <wctype.h>
 #include "mutt/mutt.h"
 #include "mutt.h"
-#include "mx.h"
 #include "pattern.h"
 #include "address.h"
 #include "body.h"
@@ -50,6 +49,7 @@
 #include "mailbox.h"
 #include "mutt_curses.h"
 #include "mutt_menu.h"
+#include "mx.h"
 #include "ncrypt/ncrypt.h"
 #include "opcodes.h"
 #include "options.h"
index bca4b27fb449fc47dcc607801a78f43a575928eb..0bfa12f30d6dd317dcf4ca13b148e7b1ca593914 100644 (file)
--- a/recvcmd.c
+++ b/recvcmd.c
@@ -467,7 +467,9 @@ static void attach_forward_bodies(FILE *fp, struct Header *hdr, struct AttachCtx
 
   if (!mime_fwd_all && !cur && (nattach > 1) && !check_can_decode(actx, cur))
   {
-    rc = query_quadoption(MimeForwardRest, _("Can't decode all tagged attachments.  MIME-forward the others?"));
+    rc = query_quadoption(
+        MimeForwardRest,
+        _("Can't decode all tagged attachments.  MIME-forward the others?"));
     if (rc == MUTT_ABORT)
       goto bail;
     else if (rc == MUTT_NO)
@@ -843,7 +845,9 @@ void mutt_attach_reply(FILE *fp, struct Header *hdr, struct AttachCtx *actx,
 
   if (nattach > 1 && !check_can_decode(actx, cur))
   {
-    rc = query_quadoption(MimeForwardRest, _("Can't decode all tagged attachments.  MIME-encapsulate the others?"));
+    rc = query_quadoption(MimeForwardRest,
+                          _("Can't decode all tagged attachments.  "
+                            "MIME-encapsulate the others?"));
     if (rc == MUTT_ABORT)
       return;
     else if (rc == MUTT_YES)