]> granicus.if.org Git - neomutt/commitdiff
clang-format
authorRichard Russon <rich@flatcap.org>
Sat, 10 Nov 2018 11:24:06 +0000 (11:24 +0000)
committerRichard Russon <rich@flatcap.org>
Sat, 10 Nov 2018 11:24:06 +0000 (11:24 +0000)
browser.c
flags.c
mx.c
pattern.c
sidebar.c

index 3dce8ebe7bfcafa619441470a8c439e07a1fdd35..dfafcb18c96ddae1871ab40f227e2ed60a8ef9a1 100644 (file)
--- a/browser.c
+++ b/browser.c
@@ -958,7 +958,8 @@ static int examine_mailboxes(struct Menu *menu, struct BrowserState *state)
       if (BrowserAbbreviateMailboxes)
         mutt_pretty_mailbox(buffer, sizeof(buffer));
 
-      switch (np->m->magic) {
+      switch (np->m->magic)
+      {
         case MUTT_IMAP:
         case MUTT_POP:
           add_folder(menu, state, buffer, np->m->desc, NULL, np->m, NULL);
diff --git a/flags.c b/flags.c
index 4a79ee94a70f2fb866733434a30bde35bc4a7315..cfcacb072d2b00ca9f7424af3554dca117fa0a12 100644 (file)
--- a/flags.c
+++ b/flags.c
@@ -147,7 +147,7 @@ void mutt_set_flag_update(struct Context *ctx, struct Email *e, int flag, bool b
           update = true;
           e->old = false;
           if (upd_ctx)
-            ctx->mailbox->msg_new ++;
+            ctx->mailbox->msg_new++;
           if (e->read)
           {
             e->read = false;
@@ -164,7 +164,7 @@ void mutt_set_flag_update(struct Context *ctx, struct Email *e, int flag, bool b
         update = true;
         if (!e->old)
           if (upd_ctx)
-            ctx->mailbox->msg_new --;
+            ctx->mailbox->msg_new--;
         e->read = true;
         if (upd_ctx)
           ctx->mailbox->msg_unread--;
@@ -187,7 +187,7 @@ void mutt_set_flag_update(struct Context *ctx, struct Email *e, int flag, bool b
           e->old = true;
           if (!e->read)
             if (upd_ctx)
-              ctx->mailbox->msg_new --;
+              ctx->mailbox->msg_new--;
           e->changed = true;
           if (upd_ctx)
             ctx->mailbox->changed = true;
@@ -199,7 +199,7 @@ void mutt_set_flag_update(struct Context *ctx, struct Email *e, int flag, bool b
         e->old = false;
         if (!e->read)
           if (upd_ctx)
-            ctx->mailbox->msg_new ++;
+            ctx->mailbox->msg_new++;
         e->changed = true;
         if (upd_ctx)
           ctx->mailbox->changed = true;
@@ -221,7 +221,7 @@ void mutt_set_flag_update(struct Context *ctx, struct Email *e, int flag, bool b
             ctx->mailbox->msg_unread--;
           if (!e->old)
             if (upd_ctx)
-              ctx->mailbox->msg_new --;
+              ctx->mailbox->msg_new--;
           e->changed = true;
           if (upd_ctx)
             ctx->mailbox->changed = true;
@@ -235,7 +235,7 @@ void mutt_set_flag_update(struct Context *ctx, struct Email *e, int flag, bool b
           ctx->mailbox->msg_unread++;
         if (!e->old)
           if (upd_ctx)
-            ctx->mailbox->msg_new ++;
+            ctx->mailbox->msg_new++;
         e->changed = true;
         if (upd_ctx)
           ctx->mailbox->changed = true;
@@ -260,7 +260,7 @@ void mutt_set_flag_update(struct Context *ctx, struct Email *e, int flag, bool b
               ctx->mailbox->msg_unread--;
             if (!e->old)
               if (upd_ctx)
-                ctx->mailbox->msg_new --;
+                ctx->mailbox->msg_new--;
           }
           e->changed = true;
           if (upd_ctx)
diff --git a/mx.c b/mx.c
index a3c7e887532ea0888c8e59b9ff1b3b56aface54d..32af9e96e0bdc55bef7c4e902dd7c9f701be39f4 100644 (file)
--- a/mx.c
+++ b/mx.c
@@ -877,7 +877,7 @@ void mx_update_tables(struct Context *ctx, bool committing)
       {
         ctx->mailbox->msg_unread++;
         if (!ctx->mailbox->hdrs[j]->old)
-          ctx->mailbox->msg_new ++;
+          ctx->mailbox->msg_new++;
       }
 
       j++;
@@ -1294,7 +1294,7 @@ void mx_update_context(struct Context *ctx, int new_messages)
     {
       ctx->mailbox->msg_unread++;
       if (!e->old)
-        ctx->mailbox->msg_new ++;
+        ctx->mailbox->msg_new++;
     }
   }
 }
index 869591eebed4da8c3408c68c23d2b3dc24dea284..da4aa7046f86b2f7b9f0ec1a9b2bd05229f5d5f2 100644 (file)
--- a/pattern.c
+++ b/pattern.c
@@ -1819,44 +1819,43 @@ int mutt_pattern_exec(struct Pattern *pat, enum PatternExecFlag flags,
   switch (pat->op)
   {
     case MUTT_AND:
-      return pat->not ^ (perform_and(pat->child, flags, ctx, e, cache) > 0);
+      return pat->not^(perform_and(pat->child, flags, ctx, e, cache) > 0);
     case MUTT_OR:
-      return pat->not ^ (perform_or(pat->child, flags, ctx, e, cache) > 0);
+      return pat->not^(perform_or(pat->child, flags, ctx, e, cache) > 0);
     case MUTT_THREAD:
-      return pat->not ^
-             match_threadcomplete(pat->child, flags, ctx, e->thread, 1, 1, 1, 1);
+      return pat->not^match_threadcomplete(pat->child, flags, ctx, e->thread, 1, 1, 1, 1);
     case MUTT_PARENT:
-      return pat->not ^ match_threadparent(pat->child, flags, ctx, e->thread);
+      return pat->not^match_threadparent(pat->child, flags, ctx, e->thread);
     case MUTT_CHILDREN:
-      return pat->not ^ match_threadchildren(pat->child, flags, ctx, e->thread);
+      return pat->not^match_threadchildren(pat->child, flags, ctx, e->thread);
     case MUTT_ALL:
       return !pat->not;
     case MUTT_EXPIRED:
-      return pat->not ^ e->expired;
+      return pat->not^e->expired;
     case MUTT_SUPERSEDED:
-      return pat->not ^ e->superseded;
+      return pat->not^e->superseded;
     case MUTT_FLAG:
-      return pat->not ^ e->flagged;
+      return pat->not^e->flagged;
     case MUTT_TAG:
-      return pat->not ^ e->tagged;
+      return pat->not^e->tagged;
     case MUTT_NEW:
       return pat->not? e->old || e->read : !(e->old || e->read);
     case MUTT_UNREAD:
       return pat->not? e->read : !e->read;
     case MUTT_REPLIED:
-      return pat->not ^ e->replied;
+      return pat->not^e->replied;
     case MUTT_OLD:
       return pat->not? (!e->old || e->read) : (e->old && !e->read);
     case MUTT_READ:
-      return pat->not ^ e->read;
+      return pat->not^e->read;
     case MUTT_DELETED:
-      return pat->not ^ e->deleted;
+      return pat->not^e->deleted;
     case MUTT_MESSAGE:
-      return pat->not ^ ((HMSG(e) >= pat->min) && (HMSG(e) <= pat->max));
+      return pat->not^((HMSG(e) >= pat->min) && (HMSG(e) <= pat->max));
     case MUTT_DATE:
-      return pat->not ^ (e->date_sent >= pat->min && e->date_sent <= pat->max);
+      return pat->not^(e->date_sent >= pat->min && e->date_sent <= pat->max);
     case MUTT_DATE_RECEIVED:
-      return pat->not ^ (e->received >= pat->min && e->received <= pat->max);
+      return pat->not^(e->received >= pat->min && e->received <= pat->max);
     case MUTT_BODY:
     case MUTT_HEADER:
     case MUTT_WHOLE_MSG:
@@ -1872,7 +1871,7 @@ int mutt_pattern_exec(struct Pattern *pat, enum PatternExecFlag flags,
       if (ctx->mailbox->magic == MUTT_IMAP && pat->stringmatch)
         return e->matched;
 #endif
-      return pat->not ^ msg_search(ctx, pat, e->msgno);
+      return pat->not^msg_search(ctx, pat, e->msgno);
     case MUTT_SERVERSEARCH:
 #ifdef USE_IMAP
       if (!ctx)
@@ -1892,53 +1891,53 @@ int mutt_pattern_exec(struct Pattern *pat, enum PatternExecFlag flags,
     case MUTT_SENDER:
       if (!e->env)
         return 0;
-      return pat->not ^ match_addrlist(pat, (flags & MUTT_MATCH_FULL_ADDRESS),
-                                       1, e->env->sender);
+      return pat->not^match_addrlist(pat, (flags & MUTT_MATCH_FULL_ADDRESS), 1,
+                                     e->env->sender);
     case MUTT_FROM:
       if (!e->env)
         return 0;
-      return pat->not ^
-             match_addrlist(pat, (flags & MUTT_MATCH_FULL_ADDRESS), 1, e->env->from);
+      return pat->not^match_addrlist(pat, (flags & MUTT_MATCH_FULL_ADDRESS), 1,
+                                     e->env->from);
     case MUTT_TO:
       if (!e->env)
         return 0;
-      return pat->not ^
-             match_addrlist(pat, (flags & MUTT_MATCH_FULL_ADDRESS), 1, e->env->to);
+      return pat->not^match_addrlist(pat, (flags & MUTT_MATCH_FULL_ADDRESS), 1,
+                                     e->env->to);
     case MUTT_CC:
       if (!e->env)
         return 0;
-      return pat->not ^
-             match_addrlist(pat, (flags & MUTT_MATCH_FULL_ADDRESS), 1, e->env->cc);
+      return pat->not^match_addrlist(pat, (flags & MUTT_MATCH_FULL_ADDRESS), 1,
+                                     e->env->cc);
     case MUTT_SUBJECT:
       if (!e->env)
         return 0;
-      return pat->not ^ (e->env->subject && patmatch(pat, e->env->subject) == 0);
+      return pat->not^(e->env->subject &&patmatch(pat, e->env->subject) == 0);
     case MUTT_ID:
       if (!e->env)
         return 0;
-      return pat->not ^ (e->env->message_id && patmatch(pat, e->env->message_id) == 0);
+      return pat->not^(e->env->message_id &&patmatch(pat, e->env->message_id) == 0);
     case MUTT_SCORE:
-      return pat->not ^ (e->score >= pat->min &&
-                         (pat->max == MUTT_MAXRANGE || e->score <= pat->max));
+      return pat->not^(e->score >= pat->min &&
+                       (pat->max == MUTT_MAXRANGE || e->score <= pat->max));
     case MUTT_SIZE:
-      return pat->not ^ (e->content->length >= pat->min &&
-                         (pat->max == MUTT_MAXRANGE || e->content->length <= pat->max));
+      return pat->not^(e->content->length >= pat->min &&
+                       (pat->max == MUTT_MAXRANGE || e->content->length <= pat->max));
     case MUTT_REFERENCE:
       if (!e->env)
         return 0;
-      return pat->not ^ (match_reference(pat, &e->env->references) ||
-                         match_reference(pat, &e->env->in_reply_to));
+      return pat->not^(match_reference(pat, &e->env->references) ||
+                       match_reference(pat, &e->env->in_reply_to));
     case MUTT_ADDRESS:
       if (!e->env)
         return 0;
-      return pat->not ^ match_addrlist(pat, (flags & MUTT_MATCH_FULL_ADDRESS),
-                                       4, e->env->from, e->env->sender,
-                                       e->env->to, e->env->cc);
+      return pat->not^match_addrlist(pat, (flags & MUTT_MATCH_FULL_ADDRESS), 4,
+                                     e->env->from, e->env->sender, e->env->to,
+                                     e->env->cc);
     case MUTT_RECIPIENT:
       if (!e->env)
         return 0;
-      return pat->not ^ match_addrlist(pat, (flags & MUTT_MATCH_FULL_ADDRESS),
-                                       2, e->env->to, e->env->cc);
+      return pat->not^match_addrlist(pat, (flags & MUTT_MATCH_FULL_ADDRESS), 2,
+                                     e->env->to, e->env->cc);
     case MUTT_LIST: /* known list, subscribed or not */
       if (!e->env)
         return 0;
@@ -1954,7 +1953,7 @@ int mutt_pattern_exec(struct Pattern *pat, enum PatternExecFlag flags,
       }
       else
         result = mutt_is_list_cc(pat->alladdr, e->env->to, e->env->cc);
-      return pat->not ^ result;
+      return pat->not^result;
     case MUTT_SUBSCRIBED_LIST:
       if (!e->env)
         return 0;
@@ -1971,7 +1970,7 @@ int mutt_pattern_exec(struct Pattern *pat, enum PatternExecFlag flags,
       }
       else
         result = mutt_is_list_recipient(pat->alladdr, e->env->to, e->env->cc);
-      return pat->not ^ result;
+      return pat->not^result;
     case MUTT_PERSONAL_RECIP:
       if (!e->env)
         return 0;
@@ -1987,7 +1986,7 @@ int mutt_pattern_exec(struct Pattern *pat, enum PatternExecFlag flags,
       }
       else
         result = match_user(pat->alladdr, e->env->to, e->env->cc);
-      return pat->not ^ result;
+      return pat->not^result;
     case MUTT_PERSONAL_FROM:
       if (!e->env)
         return 0;
@@ -2000,64 +1999,64 @@ int mutt_pattern_exec(struct Pattern *pat, enum PatternExecFlag flags,
       }
       else
         result = match_user(pat->alladdr, e->env->from, NULL);
-      return pat->not ^ result;
+      return pat->not^result;
     case MUTT_COLLAPSED:
-      return pat->not ^ (e->collapsed && e->num_hidden > 1);
+      return pat->not^(e->collapsed && e->num_hidden > 1);
     case MUTT_CRYPT_SIGN:
       if (!WithCrypto)
         break;
-      return pat->not ^ ((e->security & SIGN) ? 1 : 0);
+      return pat->not^((e->security & SIGN) ? 1 : 0);
     case MUTT_CRYPT_VERIFIED:
       if (!WithCrypto)
         break;
-      return pat->not ^ ((e->security & GOODSIGN) ? 1 : 0);
+      return pat->not^((e->security & GOODSIGN) ? 1 : 0);
     case MUTT_CRYPT_ENCRYPT:
       if (!WithCrypto)
         break;
-      return pat->not ^ ((e->security & ENCRYPT) ? 1 : 0);
+      return pat->not^((e->security & ENCRYPT) ? 1 : 0);
     case MUTT_PGP_KEY:
       if (!(WithCrypto & APPLICATION_PGP))
         break;
-      return pat->not ^ ((e->security & PGP_KEY) == PGP_KEY);
+      return pat->not^((e->security & PGP_KEY) == PGP_KEY);
     case MUTT_XLABEL:
       if (!e->env)
         return 0;
-      return pat->not ^ (e->env->x_label && patmatch(pat, e->env->x_label) == 0);
+      return pat->not^(e->env->x_label &&patmatch(pat, e->env->x_label) == 0);
     case MUTT_DRIVER_TAGS:
     {
       char *tags = driver_tags_get(&e->tags);
-      bool ret = (pat->not ^ (tags && patmatch(pat, tags) == 0));
+      bool ret = (pat->not^(tags &&patmatch(pat, tags) == 0));
       FREE(&tags);
       return ret;
     }
     case MUTT_HORMEL:
       if (!e->env)
         return 0;
-      return pat->not ^ (e->env->spam && e->env->spam->data &&
-                         patmatch(pat, e->env->spam->data) == 0);
+      return pat->not^(e->env->spam && e->env->spam->data &&
+                       patmatch(pat, e->env->spam->data) == 0);
     case MUTT_DUPLICATED:
-      return pat->not ^ (e->thread && e->thread->duplicate_thread);
+      return pat->not^(e->thread && e->thread->duplicate_thread);
     case MUTT_MIMEATTACH:
       if (!ctx)
         return 0;
       {
         int count = mutt_count_body_parts(ctx, e);
-        return pat->not ^ (count >= pat->min &&
-                           (pat->max == MUTT_MAXRANGE || count <= pat->max));
+        return pat->not^(count >= pat->min &&
+                         (pat->max == MUTT_MAXRANGE || count <= pat->max));
       }
     case MUTT_MIMETYPE:
       if (!ctx)
         return 0;
-      return pat->not ^ match_mime_content_type(pat, ctx, e);
+      return pat->not^match_mime_content_type(pat, ctx, e);
     case MUTT_UNREFERENCED:
-      return pat->not ^ (e->thread && !e->thread->child);
+      return pat->not^(e->thread && !e->thread->child);
     case MUTT_BROKEN:
-      return pat->not ^ (e->thread && e->thread->fake_thread);
+      return pat->not^(e->thread && e->thread->fake_thread);
 #ifdef USE_NNTP
     case MUTT_NEWSGROUPS:
       if (!e->env)
         return 0;
-      return pat->not ^ (e->env->newsgroups && patmatch(pat, e->env->newsgroups) == 0);
+      return pat->not^(e->env->newsgroups &&patmatch(pat, e->env->newsgroups) == 0);
 #endif
   }
   mutt_error(_("error: unknown op %d (report this error)"), pat->op);
index ba9179060c43d6a48b6f3e76c7957cd0cae59a9f..d77b17e68bb7aafdd14fc5ee15b3bae1b17d285f 100644 (file)
--- a/sidebar.c
+++ b/sidebar.c
@@ -1147,4 +1147,3 @@ void mutt_sb_notify_mailbox(struct Mailbox *m, bool created)
 
   mutt_menu_set_current_redraw(REDRAW_SIDEBAR);
 }
-