]> granicus.if.org Git - neomutt/commitdiff
refactor: light tidying
authorRichard Russon <rich@flatcap.org>
Thu, 11 Apr 2019 02:06:02 +0000 (03:06 +0100)
committerRichard Russon <rich@flatcap.org>
Sun, 14 Apr 2019 15:39:33 +0000 (16:39 +0100)
- clang-format
- remove unused declaration
- use bools in config definitions
- fix doxygen comments
- remove unnecessary check
- tidy list/queue definitions

21 files changed:
account.h
alias.h
browser.c
conn/socket.h
editmsg.c
email/email.h
email/group.h
email/parameter.h
email/url.h
handler.c
init.h
mailbox.h
mutt/buffer.c
mutt/list.h
mutt/logging.h
mutt/regex3.h
muttlib.c
ncrypt/crypt_gpgme.c
ncrypt/pgpkey.c
pattern.h
sidebar.h

index d8e1b370c5131f4ffb730804fc315ec4d7f2d02d..36facbc5a10972f244917e61e2ca2428aee84313 100644 (file)
--- a/account.h
+++ b/account.h
@@ -41,7 +41,6 @@ struct Account
   void *adata;
   void (*free_adata)(void **);
 };
-
 TAILQ_HEAD(AccountList, Account);
 
 extern struct AccountList AllAccounts; ///< List of all Accounts
diff --git a/alias.h b/alias.h
index 1214ffde9caf6b6fb92a0b55957f6ffa5dcc87b1..478c47711e677609293efd58da2f98a2c50f18ad 100644 (file)
--- a/alias.h
+++ b/alias.h
@@ -42,7 +42,6 @@ struct Alias
   short num;
   TAILQ_ENTRY(Alias) entries;
 };
-
 TAILQ_HEAD(AliasList, Alias);
 
 void            mutt_alias_create(struct Envelope *cur, struct Address *iaddr);
index 1e162a74a7f00e8beacb6753801ffe67630ad187..21c160792d5146bc94663dc7bafd6c8f68d49709 100644 (file)
--- a/browser.c
+++ b/browser.c
@@ -1105,7 +1105,7 @@ void mutt_browser_select_dir(const char *f)
 }
 
 /**
- * mutt_select_file - Let the user select a file
+ * mutt_buffer_select_file - Let the user select a file
  * @param[in]  file     Buffer for the result
  * @param[in]  flags    Flags, see #SelectFileFlags
  * @param[out] files    Array of selected files
index 8594c7c89026b8c74f6840ad6adff16f49666783..e74cdd9c9e8e761adb271decb866000f166a69dc 100644 (file)
@@ -40,11 +40,6 @@ enum ConnectionType
 
 struct Connection;
 
-/**
- * struct ConnectionList - A list of connections
- */
-TAILQ_HEAD(ConnectionList, Connection);
-
 struct Connection *mutt_socket_new(enum ConnectionType type);
 
 int mutt_socket_open(struct Connection *conn);
index 835d16234e77f16ef11fe4d1356c4ca3db120ca8..b6679971ca6c42a777ab26975739d9324ad90d09 100644 (file)
--- a/editmsg.c
+++ b/editmsg.c
@@ -83,7 +83,8 @@ static int ev_message(enum EvMessage action, struct Mailbox *m, struct Email *e)
   }
 
   const CopyHeaderFlags chflags =
-      CH_NOLEN | (((m->magic == MUTT_MBOX) || (m->magic == MUTT_MMDF)) ? CH_NO_FLAGS : CH_NOSTATUS);
+      CH_NOLEN |
+      (((m->magic == MUTT_MBOX) || (m->magic == MUTT_MMDF)) ? CH_NO_FLAGS : CH_NOSTATUS);
   rc = mutt_append_message(ctx_tmp->mailbox, m, e, MUTT_CM_NO_FLAGS, chflags);
   int oerrno = errno;
 
index 0d1711c599b7b4a9c3ab51deb5de996799b12217..38420a7087ec56fcf942d1775c9bd8c82fc8ada4 100644 (file)
@@ -123,7 +123,6 @@ struct EmailNode
   struct Email *email;
   STAILQ_ENTRY(EmailNode) entries;
 };
-
 STAILQ_HEAD(EmailList, EmailNode);
 
 bool          mutt_email_cmp_strict(const struct Email *e1, const struct Email *e2);
index 6325396c510030b3e4768ae15313d0fc0d665bb9..6eb39945a07530599e4ff253793908903076bbdb 100644 (file)
@@ -50,10 +50,6 @@ struct GroupNode
   struct Group *group;
   STAILQ_ENTRY(GroupNode) entries;
 };
-
-/**
- * struct GroupList - A list of GroupNodes
- */
 STAILQ_HEAD(GroupList, GroupNode);
 
 void mutt_grouplist_init(void);
index f1b67ee7cc270edc5010aa4748ed0f5db2231c59..8c0d8087f26c3cb71b4e5ae527ed67526839d866 100644 (file)
 #include <stdbool.h>
 #include "mutt/mutt.h"
 
-/**
- * struct ParameterList - List of parameters
- */
-TAILQ_HEAD(ParameterList, Parameter);
-
 /**
  * struct Parameter - Attribute associated with a MIME part
  */
@@ -40,6 +35,7 @@ struct Parameter
   char *value;
   TAILQ_ENTRY(Parameter) entries;
 };
+TAILQ_HEAD(ParameterList, Parameter);
 
 bool              mutt_param_cmp_strict(const struct ParameterList *p1, const struct ParameterList *p2);
 void              mutt_param_delete(struct ParameterList *p, const char *attribute);
index 9d8b4de9d4fd06fae037b71c02271d5c6ddaa4d7..74f1db1087eed30e504621217a4d5cf773dbdba4 100644 (file)
@@ -58,7 +58,6 @@ struct UrlQueryString
   char *value;
   STAILQ_ENTRY(UrlQueryString) entries;
 };
-
 STAILQ_HEAD(UrlQueryStringHead, UrlQueryString);
 
 /**
index 7b0f5c2103776d756a0fb422391a7768c70a9638..50564ee6e9861dd5369423f62c6414bec8109edd 100644 (file)
--- a/handler.c
+++ b/handler.c
@@ -874,7 +874,8 @@ static int external_body_handler(struct Body *b, struct State *s)
       state_attach_puts(strbuf, s);
 
       mutt_copy_hdr(s->fp_in, s->fp_out, ftello(s->fp_in), b->parts->offset,
-                    (C_Weed ? (CH_WEED | CH_REORDER) : CH_NO_FLAGS) | CH_DECODE | CH_DISPLAY, NULL);
+                    (C_Weed ? (CH_WEED | CH_REORDER) : CH_NO_FLAGS) | CH_DECODE | CH_DISPLAY,
+                    NULL);
     }
   }
   else
@@ -891,7 +892,8 @@ static int external_body_handler(struct Body *b, struct State *s)
       state_attach_puts(strbuf, s);
 
       mutt_copy_hdr(s->fp_in, s->fp_out, ftello(s->fp_in), b->parts->offset,
-                    (C_Weed ? (CH_WEED | CH_REORDER) : CH_NO_FLAGS) | CH_DECODE | CH_DISPLAY, NULL);
+                    (C_Weed ? (CH_WEED | CH_REORDER) : CH_NO_FLAGS) | CH_DECODE | CH_DISPLAY,
+                    NULL);
     }
   }
 
diff --git a/init.h b/init.h
index b9424dd2bc316c8bd02160b690784d44eb8a076a..1c0f93bef7a59f44da2c9305a07c0fdb4889045e 100644 (file)
--- a/init.h
+++ b/init.h
@@ -1552,7 +1552,7 @@ struct ConfigDef MuttVars[] = {
   ** of mailboxes it polls for new mail just as if you had issued individual
   ** "$mailboxes" commands.
   */
-  { "imap_condstore",  DT_BOOL, R_NONE, &C_ImapCondStore, 0 },
+  { "imap_condstore",  DT_BOOL, R_NONE, &C_ImapCondStore, false },
   /*
   ** .pp
   ** When \fIset\fP, mutt will use the CONDSTORE extension (RFC 7162)
@@ -1674,7 +1674,7 @@ struct ConfigDef MuttVars[] = {
   ** for new mail, before timing out and closing the connection.  Set
   ** to 0 to disable timing out.
   */
-  { "imap_qresync",  DT_BOOL, R_NONE, &C_ImapQResync, 0 },
+  { "imap_qresync",  DT_BOOL, R_NONE, &C_ImapQResync, false },
   /*
   ** .pp
   ** When \fIset\fP, mutt will use the QRESYNC extension (RFC 7162)
@@ -2503,7 +2503,7 @@ struct ConfigDef MuttVars[] = {
   ** subprocess failed.
   ** (PGP only)
   */
-  { "pgp_check_gpg_decrypt_status_fd", DT_BOOL, R_NONE, &C_PgpCheckGpgDecryptStatusFd, 1 },
+  { "pgp_check_gpg_decrypt_status_fd", DT_BOOL, R_NONE, &C_PgpCheckGpgDecryptStatusFd, true },
   /*
   ** .pp
   ** If \fIset\fP, mutt will check the status file descriptor output
index e2a544364904ca82ee89886baaa9f55c08d671f4..2fde142f3aca2672e3b1660e30abc3a358df6d31 100644 (file)
--- a/mailbox.h
+++ b/mailbox.h
@@ -149,7 +149,6 @@ struct MailboxNode
   struct Mailbox *mailbox;
   STAILQ_ENTRY(MailboxNode) entries;
 };
-
 STAILQ_HEAD(MailboxList, MailboxNode);
 
 extern struct MailboxList AllMailboxes; ///< List of all Mailboxes
index cdc3a56eac5442f32f6470777ac8eb6faf0d23f4..a1b0cc5b6b870028c2ed42d05a5eb0c657f4dffa 100644 (file)
@@ -320,7 +320,7 @@ void mutt_buffer_strcpy(struct Buffer *buf, const char *s)
 }
 
 /**
- * mutt_buffer_strcpy - Copy a string into a Buffer
+ * mutt_buffer_strcpy_n - Copy a string into a Buffer
  * @param buf Buffer to overwrite
  * @param s   String to copy
  * @param len Length of string to copy
index 06a2b40039a2a96706f0a027ace5008be1f49f93..d5ee8df7bda0794a78673c9487d0f7740b5c9c36 100644 (file)
@@ -35,13 +35,6 @@ struct ListNode
   char *data;
   STAILQ_ENTRY(ListNode) entries;
 };
-
-/**
- * struct ListHead - A generic list of strings
- *
- * The List is stored as a STAILQ.
- * This means that insertions are quick at the head and tail of the list.
- */
 STAILQ_HEAD(ListHead, ListNode);
 
 /**
index ac219be30bff362f363b88540aa4b5549e77daef..ce84368fc3bb76851b288ad259a5de88e30e7725 100644 (file)
@@ -75,13 +75,6 @@ struct LogLine
   char *message;
   STAILQ_ENTRY(LogLine) entries;
 };
-
-/**
- * struct LogList - A list of log lines
- *
- * The Log is stored as a STAILQ.
- * This means that insertions are quick at the head and tail of the list.
- */
 STAILQ_HEAD(LogList, LogLine);
 
 #define mutt_debug(LEVEL, ...) MuttLogger(0, __FILE__, __LINE__, __func__, LEVEL,      __VA_ARGS__)
index 2aeb137a18950ea6e433af45464c0c814850e307..545ae81a56d5fd20fb814281575a80bcd5383d2a 100644 (file)
@@ -69,7 +69,6 @@ struct RegexListNode
   struct Regex *regex; /**< Regex containing a regular expression */
   STAILQ_ENTRY(RegexListNode) entries; /**< Next item in list */
 };
-
 STAILQ_HEAD(RegexList, RegexListNode);
 
 /**
index b687d1f872d7bf7ab17d0c2cc529c90b41ca59db..9d3fa2b7f57c897b72caef65615e8e47feecd90f 100644 (file)
--- a/muttlib.c
+++ b/muttlib.c
@@ -1714,7 +1714,7 @@ int mutt_inbox_cmp(const char *a, const char *b)
 }
 
 /**
- * mutt_buffer_concat - Join a directory name and a filename
+ * mutt_buffer_concat_path - Join a directory name and a filename
  * @param d     Buffer to add to
  * @param dir   Directory name
  * @param fname File name
index 03ca9c603d6eaebe244ade6636be999b24ec1bbb..c210e2ebb13556cb26dbc583ce0e532ec60ed665 100644 (file)
@@ -985,7 +985,7 @@ static char *data_object_to_tempfile(gpgme_data_t data, FILE **fp_ret)
 #if GPGME_VERSION_NUMBER >= 0x010b00 /* gpgme >= 1.11.0 */
 
 /**
- * create_recipient_string - XXX
+ * create_recipient_string - Create a string of recipients
  * @param keylist    Keys, space-separated
  * @param recpstring Buffer to store the recipients
  * @param use_smime  Use SMIME
@@ -3087,10 +3087,7 @@ int pgp_gpgme_application_handler(struct Body *m, struct State *s)
       }
 
       gpgme_data_release(armored_data);
-      if (fp_out)
-      {
-        mutt_file_fclose(&fp_out);
-      }
+      mutt_file_fclose(&fp_out);
     }
     else
     {
@@ -3317,7 +3314,7 @@ int smime_gpgme_application_handler(struct Body *a, struct State *s)
  * | \%p     | Protocol
  * | \%t     | Trust/validity of the key-uid association
  * | \%u     | User id
- * | \%[...] | Date of key using strftime(3)
+ * | \%[fmt] | Date of key using strftime(3)
  * |         |
  * | \%a     | Algorithm
  * | \%c     | Capabilities
index 45d108ec4e59a3fc509a6d423ad193ed30d1ec49..897db4fdfa8c5582661f1ee68d61a2eca39a3aaa 100644 (file)
@@ -160,7 +160,7 @@ struct PgpEntry
  * | \%n     | Number
  * | \%t     | Trust/validity of the key-uid association
  * | \%u     | User id
- * | \%[...] | Date of key using strftime(3)
+ * | \%[fmt] | Date of key using strftime(3)
  * |         |
  * | \%a     | Algorithm
  * | \%c     | Capabilities
index 48bb40ab211c102a0806d5eea7c68b8e8c41ca37..e3c8f530827ff24315eb79cbe663c9eb24f24c74 100644 (file)
--- a/pattern.h
+++ b/pattern.h
@@ -39,8 +39,6 @@ extern bool C_ThoroughSearch;
 /* flag to mutt_pattern_comp() */
 #define MUTT_FULL_MSG (1 << 0) /* enable body and header matching */
 
-SLIST_HEAD(PatternHead, Pattern);
-
 /**
  * struct Pattern - A simple (non-regex) pattern
  */
@@ -65,6 +63,7 @@ struct Pattern
     struct ListHead multi_cases;
   } p;
 };
+SLIST_HEAD(PatternHead, Pattern);
 
 /**
  * enum PatternExecFlag - Flags for mutt_pattern_exec()
index 5db8e0bf0551f8747b564d81a33f9138c59dd6e6..70de6384302a2fb117a9812e31fbc85aa8208d24 100644 (file)
--- a/sidebar.h
+++ b/sidebar.h
@@ -28,7 +28,6 @@
 #include <stdbool.h>
 
 struct Mailbox;
-struct Context;
 
 /* These Config Variables are only used in sidebar.c */
 extern short C_SidebarComponentDepth;