diff options
| author | David Bremner <david@tethera.net> | 2019-06-12 19:47:20 -0300 |
|---|---|---|
| committer | David Bremner <david@tethera.net> | 2019-06-14 07:41:27 -0300 |
| commit | be8f0ba92a302798b21cf02ef73c4ad783b66cba (patch) | |
| tree | 11a5ce8338b35f9e4f489ac14cf64a9b5b5d2b83 /notmuch-search.c | |
| parent | bcfd3e7542b3a004caba16b723c6663c7fd4b015 (diff) | |
CLI: replace some constructs with more uncrustify friendly ones
In particular
- use (bool) instead of !!
- cuddle the opening parens of function calls
- add parens in some ternery operators
Diffstat (limited to 'notmuch-search.c')
| -rw-r--r-- | notmuch-search.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/notmuch-search.c b/notmuch-search.c index e2dee418..e3a85617 100644 --- a/notmuch-search.c +++ b/notmuch-search.c @@ -752,8 +752,8 @@ _notmuch_search_prepare (search_context_t *ctx, notmuch_config_t *config, int ar size_t search_exclude_tags_length; notmuch_status_t status; - search_exclude_tags = notmuch_config_get_search_exclude_tags - (config, &search_exclude_tags_length); + search_exclude_tags = notmuch_config_get_search_exclude_tags ( + config, &search_exclude_tags_length); for (i = 0; i < search_exclude_tags_length; i++) { status = notmuch_query_add_tag_exclude (ctx->query, search_exclude_tags[i]); |
