Skip to content

Commit

Permalink
clang-format
Browse files Browse the repository at this point in the history
  • Loading branch information
flatcap committed Jul 26, 2021
1 parent 1bae0f1 commit 52eb96b
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions pattern/exec.c
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,8 @@
#endif

static bool pattern_exec(struct Pattern *pat, PatternExecFlags flags,
struct Mailbox *m, struct Email *e, struct Message *msg,
struct PatternCache *cache);
struct Mailbox *m, struct Email *e,
struct Message *msg, struct PatternCache *cache);

/**
* patmatch - Compare a string to a Pattern
Expand Down Expand Up @@ -797,8 +797,8 @@ static bool pattern_needs_msg(const struct Mailbox *m, const struct Pattern *pat
* store some of the cacheable pattern matches in this structure.
*/
static bool pattern_exec(struct Pattern *pat, PatternExecFlags flags,
struct Mailbox *m, struct Email *e, struct Message *msg,
struct PatternCache *cache)
struct Mailbox *m, struct Email *e,
struct Message *msg, struct PatternCache *cache)
{
switch (pat->op)
{
Expand Down Expand Up @@ -1096,7 +1096,7 @@ static bool pattern_exec(struct Pattern *pat, PatternExecFlags flags,
* store some of the cacheable pattern matches in this structure.
*/
bool mutt_pattern_exec(struct Pattern *pat, PatternExecFlags flags,
struct Mailbox *m, struct Email *e, struct PatternCache *cache)
struct Mailbox *m, struct Email *e, struct PatternCache *cache)
{
const bool needs_msg = pattern_needs_msg(m, pat);
struct Message *msg = needs_msg ? mx_msg_open(m, e->msgno) : NULL;
Expand All @@ -1123,7 +1123,7 @@ bool mutt_pattern_exec(struct Pattern *pat, PatternExecFlags flags,
* store some of the cacheable pattern matches in this structure.
*/
bool mutt_pattern_alias_exec(struct Pattern *pat, PatternExecFlags flags,
struct AliasView *av, struct PatternCache *cache)
struct AliasView *av, struct PatternCache *cache)
{
switch (pat->op)
{
Expand Down
2 changes: 1 addition & 1 deletion sidebar/private.h
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ enum DivType
*/
struct SidebarWindowData
{
struct IndexSharedData *shared; /// Shared Index Data
struct IndexSharedData *shared; ///< Shared Index Data
ARRAY_HEAD(, struct SbEntry *) entries; ///< Items to display in the sidebar

int top_index; ///< First mailbox visible in sidebar
Expand Down

0 comments on commit 52eb96b

Please sign in to comment.