]> granicus.if.org Git - neomutt/commitdiff
doxy: tidy/standardise lots of comments
authorRichard Russon <rich@flatcap.org>
Fri, 26 Apr 2019 22:28:37 +0000 (23:28 +0100)
committerRichard Russon <rich@flatcap.org>
Mon, 29 Apr 2019 22:41:34 +0000 (23:41 +0100)
31 files changed:
address/group.c
address/idna.c
color.c
config/bool.c
config/cfgaccount.c
config/command.c
config/quad.c
config/set.c
config/set.h
format_flags.h
help.c
icommands.h
imap/auth_anon.c
imap/auth_cram.c
imap/auth_gss.c
imap/auth_login.c
imap/auth_plain.c
imap/auth_sasl.c
imap/util.c
init.c
keymap.c
maildir/shared.c
mutt/date.c
mutt/file.c
mutt/string.c
mutt_commands.h
ncrypt/crypt_gpgme.c
ncrypt/gnupgparse.c
ncrypt/smime.c
notmuch/mutt_notmuch.c
rfc3676.c

index de8a9c74944ccb7ef1a6f3b3b0e1cbdbb227e8bf..847433ca33e50365f722a29486858409789203d6 100644 (file)
@@ -36,7 +36,7 @@
 static struct Hash *Groups = NULL;
 
 /**
- * mutt_grouplist_init - Initialize the GroupList singleton.
+ * mutt_grouplist_init - Initialize the GroupList singleton
  *
  * This is called once from init.c when initializing the global structures.
  */
@@ -46,7 +46,7 @@ void mutt_grouplist_init(void)
 }
 
 /**
- * mutt_grouplist_free - Free GroupList singleton resource.
+ * mutt_grouplist_free - Free GroupList singleton resource
  *
  * This is called once from init.c when deinitializing the global resources.
  */
index b6b06d7f402c2a7d5a700b0145dc6a504d923b6b..eeb372115be6c520a99d6f4bef52cefaa769e6c8 100644 (file)
@@ -304,7 +304,7 @@ cleanup:
 
 /**
  * mutt_idna_print_version - Create an IDN version string
- * @retval str Version string
+ * @retval ptr Version string
  *
  * @note This is a static string and must not be freed.
  */
diff --git a/color.c b/color.c
index 3a811155512bd6cc76824e4a0a7ba83a18fe2d20..d025c3ca97c544e25e1ab132e9c8f63fcc2a0421 100644 (file)
--- a/color.c
+++ b/color.c
@@ -624,7 +624,7 @@ static void do_uncolor(struct Buffer *buf, struct Buffer *s,
  * @param data          Flags associated with the command
  * @param err           Buffer for error messages
  * @param parse_uncolor If true, 'uncolor', else 'unmono'
- * @retval enum e.g. #MUTT_CMD_SUCCESS
+ * @retval #CommandResult Result e.g. #MUTT_CMD_SUCCESS
  *
  * usage:
  * * uncolor index pattern [pattern...]
@@ -752,7 +752,7 @@ enum CommandResult mutt_parse_unmono(struct Buffer *buf, struct Buffer *s,
  * @param err       Buffer for error messages
  * @param is_index  true of this is for the index
  * @param match     Number of regex subexpression to match (0 for entire pattern)
- * @retval enum e.g. #MUTT_CMD_SUCCESS
+ * @retval #CommandResult Result e.g. #MUTT_CMD_SUCCESS
  */
 static enum CommandResult add_pattern(struct ColorLineHead *top, const char *s,
                                       bool sensitive, uint32_t fg, uint32_t bg, int attr,
@@ -1047,7 +1047,7 @@ static int fgbgattr_to_color(int fg, int bg, int attr)
  * @param callback Function to handle command - Implements ::parser_callback_t
  * @param dry_run  If true, test the command, but don't apply it
  * @param color    If true "color", else "mono"
- * @retval enum e.g. #MUTT_CMD_SUCCESS
+ * @retval #CommandResult Result e.g. #MUTT_CMD_SUCCESS
  *
  * usage: color OBJECT FG BG [ REGEX ]
  *        mono  OBJECT ATTR [ REGEX ]
index 028d220b1b732c49bf6828d951b623d0e25af18e..f583e79af96317f94c13aa00fb658e17bcd43fec 100644 (file)
@@ -204,7 +204,7 @@ void bool_init(struct ConfigSet *cs)
  * @param cs  Config items
  * @param he  HashElem representing config item
  * @param err Buffer for error messages
- * @retval int Result, e.g. #CSR_SUCCESS
+ * @retval num Result, e.g. #CSR_SUCCESS
  */
 int bool_he_toggle(struct ConfigSet *cs, struct HashElem *he, struct Buffer *err)
 {
@@ -235,7 +235,7 @@ int bool_he_toggle(struct ConfigSet *cs, struct HashElem *he, struct Buffer *err
  * @param cs   Config items
  * @param name Name of config item
  * @param err  Buffer for error messages
- * @retval int Result, e.g. #CSR_SUCCESS
+ * @retval num Result, e.g. #CSR_SUCCESS
  */
 int bool_str_toggle(struct ConfigSet *cs, const char *name, struct Buffer *err)
 {
index 6f5f17e21a49791e41856ffd2235080e61b1a1bb..99516fb549c508c8984ee8032fde941c29d71a09 100644 (file)
@@ -124,7 +124,7 @@ void ac_free(const struct ConfigSet *cs, struct CfgAccount **ac)
  * @param vid   Value ID (index into CfgAccount's HashElem's)
  * @param value Native pointer/value to set
  * @param err   Buffer for error messages
- * @retval int Result, e.g. #CSR_SUCCESS
+ * @retval num Result, e.g. #CSR_SUCCESS
  */
 int ac_set_value(const struct CfgAccount *ac, size_t vid, intptr_t value, struct Buffer *err)
 {
@@ -142,7 +142,7 @@ int ac_set_value(const struct CfgAccount *ac, size_t vid, intptr_t value, struct
  * @param ac     Account-specific config items
  * @param vid    Value ID (index into CfgAccount's HashElem's)
  * @param result Buffer for results or error messages
- * @retval int Result, e.g. #CSR_SUCCESS
+ * @retval num Result, e.g. #CSR_SUCCESS
  */
 int ac_get_value(const struct CfgAccount *ac, size_t vid, struct Buffer *result)
 {
index 54582deb81bbfa44fd4c5a3957edb9be146ae32e..4b21c516f1b66cb2849536d4acbc233cac132108 100644 (file)
@@ -66,7 +66,7 @@ static void command_destroy(const struct ConfigSet *cs, void *var, const struct
  * @param cdef  Variable definition
  * @param value Value to set
  * @param err   Buffer for error messages
- * @retval int Result, e.g. #CSR_SUCCESS
+ * @retval num Result, e.g. #CSR_SUCCESS
  *
  * If var is NULL, then the config item's initial value will be set.
  */
@@ -131,7 +131,7 @@ static int command_string_set(const struct ConfigSet *cs, void *var, struct Conf
  * @param var    Variable to get
  * @param cdef   Variable definition
  * @param result Buffer for results or error messages
- * @retval int Result, e.g. #CSR_SUCCESS
+ * @retval num Result, e.g. #CSR_SUCCESS
  *
  * If var is NULL, then the config item's initial value will be returned.
  */
@@ -162,7 +162,7 @@ static int command_string_get(const struct ConfigSet *cs, void *var,
  * @param cdef  Variable definition
  * @param value Native pointer/value to set
  * @param err   Buffer for error messages
- * @retval int Result, e.g. #CSR_SUCCESS
+ * @retval num Result, e.g. #CSR_SUCCESS
  */
 static int command_native_set(const struct ConfigSet *cs, void *var,
                               const struct ConfigDef *cdef, intptr_t value,
@@ -214,6 +214,7 @@ static int command_native_set(const struct ConfigSet *cs, void *var,
  * @param cdef Variable definition
  * @param err  Buffer for error messages
  * @retval intptr_t Command string
+ * @retval INT_MIN  Error
  */
 static intptr_t command_native_get(const struct ConfigSet *cs, void *var,
                                    const struct ConfigDef *cdef, struct Buffer *err)
@@ -232,7 +233,7 @@ static intptr_t command_native_get(const struct ConfigSet *cs, void *var,
  * @param var  Variable to reset
  * @param cdef Variable definition
  * @param err  Buffer for error messages
- * @retval int Result, e.g. #CSR_SUCCESS
+ * @retval num Result, e.g. #CSR_SUCCESS
  */
 static int command_reset(const struct ConfigSet *cs, void *var,
                          const struct ConfigDef *cdef, struct Buffer *err)
index 1ab8d28e858a6fa8b16c732d3ae2affb62425fae..b0a68bddffdd54d96c68c7f8a214d79bf3361500 100644 (file)
@@ -218,7 +218,7 @@ static int quad_toggle(int opt)
  * @param cs  Config items
  * @param he  HashElem representing config item
  * @param err Buffer for error messages
- * @retval int Result, e.g. #CSR_SUCCESS
+ * @retval num Result, e.g. #CSR_SUCCESS
  *
  * @sa quad_toggle()
  */
index 57c1f2e38a2e519e10fe38c0922fdb51730152e7..7a6f042e133f88b01e973034b7a97bdd9eacca3b 100644 (file)
@@ -384,7 +384,7 @@ void cs_notify_listeners(const struct ConfigSet *cs, struct HashElem *he,
  * @param cs   Config items
  * @param he   HashElem representing config item
  * @param err  Buffer for error messages
- * @retval int Result, e.g. #CSR_SUCCESS
+ * @retval num Result, e.g. #CSR_SUCCESS
  */
 int cs_he_reset(const struct ConfigSet *cs, struct HashElem *he, struct Buffer *err)
 {
@@ -431,7 +431,7 @@ int cs_he_reset(const struct ConfigSet *cs, struct HashElem *he, struct Buffer *
  * @param cs   Config items
  * @param name Name of config item
  * @param err  Buffer for error messages
- * @retval int Result, e.g. #CSR_SUCCESS
+ * @retval num Result, e.g. #CSR_SUCCESS
  */
 int cs_str_reset(const struct ConfigSet *cs, const char *name, struct Buffer *err)
 {
@@ -454,7 +454,7 @@ int cs_str_reset(const struct ConfigSet *cs, const char *name, struct Buffer *er
  * @param he    HashElem representing config item
  * @param value Value to set
  * @param err   Buffer for error messages
- * @retval int Result, e.g. #CSR_SUCCESS
+ * @retval num Result, e.g. #CSR_SUCCESS
  */
 int cs_he_initial_set(const struct ConfigSet *cs, struct HashElem *he,
                       const char *value, struct Buffer *err)
@@ -495,7 +495,7 @@ int cs_he_initial_set(const struct ConfigSet *cs, struct HashElem *he,
  * @param name  Name of config item
  * @param value Value to set
  * @param err   Buffer for error messages
- * @retval int Result, e.g. #CSR_SUCCESS
+ * @retval num Result, e.g. #CSR_SUCCESS
  */
 int cs_str_initial_set(const struct ConfigSet *cs, const char *name,
                        const char *value, struct Buffer *err)
@@ -518,7 +518,7 @@ int cs_str_initial_set(const struct ConfigSet *cs, const char *name,
  * @param cs     Config items
  * @param he     HashElem representing config item
  * @param result Buffer for results or error messages
- * @retval int Result, e.g. #CSR_SUCCESS
+ * @retval num Result, e.g. #CSR_SUCCESS
  *
  * If a config item is inherited from another, then this will get the parent's
  * value.  Otherwise, it will get the config item's initial value.
@@ -559,7 +559,7 @@ int cs_he_initial_get(const struct ConfigSet *cs, struct HashElem *he, struct Bu
  * @param cs     Config items
  * @param name   Name of config item
  * @param result Buffer for results or error messages
- * @retval int Result, e.g. #CSR_SUCCESS
+ * @retval num Result, e.g. #CSR_SUCCESS
  *
  * If a config item is inherited from another, then this will get the parent's
  * value.  Otherwise, it will get the config item's initial value.
@@ -585,7 +585,7 @@ int cs_str_initial_get(const struct ConfigSet *cs, const char *name, struct Buff
  * @param he    HashElem representing config item
  * @param value Value to set
  * @param err   Buffer for error messages
- * @retval int Result, e.g. #CSR_SUCCESS
+ * @retval num Result, e.g. #CSR_SUCCESS
  */
 int cs_he_string_set(const struct ConfigSet *cs, struct HashElem *he,
                      const char *value, struct Buffer *err)
@@ -640,7 +640,7 @@ int cs_he_string_set(const struct ConfigSet *cs, struct HashElem *he,
  * @param name  Name of config item
  * @param value Value to set
  * @param err   Buffer for error messages
- * @retval int Result, e.g. #CSR_SUCCESS
+ * @retval num Result, e.g. #CSR_SUCCESS
  */
 int cs_str_string_set(const struct ConfigSet *cs, const char *name,
                       const char *value, struct Buffer *err)
@@ -663,7 +663,7 @@ int cs_str_string_set(const struct ConfigSet *cs, const char *name,
  * @param cs     Config items
  * @param he     HashElem representing config item
  * @param result Buffer for results or error messages
- * @retval int Result, e.g. #CSR_SUCCESS
+ * @retval num Result, e.g. #CSR_SUCCESS
  */
 int cs_he_string_get(const struct ConfigSet *cs, struct HashElem *he, struct Buffer *result)
 {
@@ -711,7 +711,7 @@ int cs_he_string_get(const struct ConfigSet *cs, struct HashElem *he, struct Buf
  * @param cs     Config items
  * @param name   Name of config item
  * @param result Buffer for results or error messages
- * @retval int Result, e.g. #CSR_SUCCESS
+ * @retval num Result, e.g. #CSR_SUCCESS
  */
 int cs_str_string_get(const struct ConfigSet *cs, const char *name, struct Buffer *result)
 {
@@ -734,7 +734,7 @@ int cs_str_string_get(const struct ConfigSet *cs, const char *name, struct Buffe
  * @param he    HashElem representing config item
  * @param value Native pointer/value to set
  * @param err   Buffer for error messages
- * @retval int Result, e.g. #CSR_SUCCESS
+ * @retval num Result, e.g. #CSR_SUCCESS
  */
 int cs_he_native_set(const struct ConfigSet *cs, struct HashElem *he,
                      intptr_t value, struct Buffer *err)
@@ -784,7 +784,7 @@ int cs_he_native_set(const struct ConfigSet *cs, struct HashElem *he,
  * @param name  Name of config item
  * @param value Native pointer/value to set
  * @param err   Buffer for error messages
- * @retval int Result, e.g. #CSR_SUCCESS
+ * @retval num Result, e.g. #CSR_SUCCESS
  */
 int cs_str_native_set(const struct ConfigSet *cs, const char *name,
                       intptr_t value, struct Buffer *err)
@@ -838,6 +838,7 @@ int cs_str_native_set(const struct ConfigSet *cs, const char *name,
  * @param he  HashElem representing config item
  * @param err Buffer for results or error messages
  * @retval intptr_t Native pointer/value
+ * @retval INT_MIN  Error
  */
 intptr_t cs_he_native_get(const struct ConfigSet *cs, struct HashElem *he, struct Buffer *err)
 {
@@ -885,6 +886,7 @@ intptr_t cs_he_native_get(const struct ConfigSet *cs, struct HashElem *he, struc
  * @param name Name of config item
  * @param err  Buffer for error messages
  * @retval intptr_t Native pointer/value
+ * @retval INT_MIN  Error
  */
 intptr_t cs_str_native_get(const struct ConfigSet *cs, const char *name, struct Buffer *err)
 {
index d884cc07d0a67c8310ab5ff32bbffdd5295e6f9c..74e07d625d8a5a8dbda89f96762902559415d225 100644 (file)
@@ -96,7 +96,7 @@ typedef int     (*cs_validator)  (const struct ConfigSet *cs, const struct Confi
  * @param cdef  Variable definition
  * @param value Value to set
  * @param err   Buffer for error messages
- * @retval int Result, e.g. #CSR_SUCCESS
+ * @retval num Result, e.g. #CSR_SUCCESS
  *
  * If var is NULL, then the config item's initial value will be set.
  */
@@ -107,7 +107,7 @@ typedef int     (*cst_string_set)(const struct ConfigSet *cs, void *var,       s
  * @param var    Variable to get
  * @param cdef   Variable definition
  * @param result Buffer for results or error messages
- * @retval int Result, e.g. #CSR_SUCCESS
+ * @retval num Result, e.g. #CSR_SUCCESS
  *
  * If var is NULL, then the config item's initial value will be returned.
  */
@@ -119,7 +119,7 @@ typedef int     (*cst_string_get)(const struct ConfigSet *cs, void *var, const s
  * @param cdef  Variable definition
  * @param value Native pointer/value to set
  * @param err   Buffer for error messages
- * @retval int Result, e.g. #CSR_SUCCESS
+ * @retval num Result, e.g. #CSR_SUCCESS
  */
 typedef int     (*cst_native_set)(const struct ConfigSet *cs, void *var, const struct ConfigDef *cdef, intptr_t value,    struct Buffer *err);
 /**
@@ -129,6 +129,7 @@ typedef int     (*cst_native_set)(const struct ConfigSet *cs, void *var, const s
  * @param cdef Variable definition
  * @param err  Buffer for error messages
  * @retval intptr_t Config item string
+ * @retval INT_MIN  Error
  */
 typedef intptr_t(*cst_native_get)(const struct ConfigSet *cs, void *var, const struct ConfigDef *cdef,                    struct Buffer *err);
 
@@ -138,7 +139,7 @@ typedef intptr_t(*cst_native_get)(const struct ConfigSet *cs, void *var, const s
  * @param var  Variable to reset
  * @param cdef Variable definition
  * @param err  Buffer for error messages
- * @retval int Result, e.g. #CSR_SUCCESS
+ * @retval num Result, e.g. #CSR_SUCCESS
  */
 typedef int     (*cst_reset)     (const struct ConfigSet *cs, void *var, const struct ConfigDef *cdef, struct Buffer *err);
 /**
index 2fa62f163d29c2a628f9f31ad3042a7388214af0..170a97383c397bbbb3ef58cf9b28552fdf750a0f 100644 (file)
@@ -50,7 +50,7 @@ typedef uint8_t MuttFormatFlags;         ///< Flags for mutt_expando_format(), e
  * @param[in]  else_str Otherwise, display this string
  * @param[in]  data     Pointer to the mailbox Context
  * @param[in]  flags    Flags, see #MuttFormatFlags
- * @retval src (unchanged)
+ * @retval ptr src (unchanged)
  *
  * Each callback function implements some expandos, e.g.
  *
diff --git a/help.c b/help.c
index f22ecb79c92cd9cc7ec38a67a7d7b523fe0275c1..c089bf394db1e532a37bc394d363e789edd27471 100644 (file)
--- a/help.c
+++ b/help.c
@@ -250,8 +250,8 @@ static int get_wrapped_width(const char *t, size_t wid)
  * @param fp  File to write to
  * @param col Current screen column
  * @param i   Screen column to pad until
- * @retval col Padding was added
- * @retval i   Content was already wider than col
+ * @retval i   Padding was added
+ * @retval col Content was already wider than col
  */
 static int pad(FILE *fp, int col, int i)
 {
index f3ae5079c88095d890b91ea253c027070ca62c8a..80193d9cd09e717ef118456fb825ad37108c1105 100644 (file)
@@ -34,7 +34,7 @@ struct Buffer;
  * @param s    Entire command line
  * @param data Private data to pass to parse function
  * @param err  Buffer for error messages
- * @retval enum e.g. #MUTT_CMD_SUCCESS
+ * @retval #CommandResult Result, e.g. #MUTT_CMD_SUCCESS
  */
 typedef enum CommandResult icommand_t(struct Buffer *buf, struct Buffer *s, unsigned long data, struct Buffer *err);
 
index c49223ca62dce0cee59054a37e9cf1919133992f..8e5815bf966e39e0c40e68471f695c2e9cb83eb2 100644 (file)
@@ -38,7 +38,7 @@
  * imap_auth_anon - Authenticate anonymously
  * @param adata Imap Account data
  * @param method Name of this authentication method
- * @retval enum Result, e.g. #IMAP_AUTH_SUCCESS
+ * @retval #ImapAuthRes Result, e.g. #IMAP_AUTH_SUCCESS
  *
  * this is basically a stripped-down version of the cram-md5 method.
  */
index 61f4e815f8118b6d7fa87cd1888baef714b71e5f..6af3afedcd3ca1c6ed224e2ad196f79b35450ff9 100644 (file)
@@ -93,7 +93,7 @@ static void hmac_md5(const char *password, char *challenge, unsigned char *respo
  * imap_auth_cram_md5 - Authenticate using CRAM-MD5
  * @param adata Imap Account data
  * @param method Name of this authentication method
- * @retval enum Result, e.g. #IMAP_AUTH_SUCCESS
+ * @retval #ImapAuthRes Result, e.g. #IMAP_AUTH_SUCCESS
  */
 enum ImapAuthRes imap_auth_cram_md5(struct ImapAccountData *adata, const char *method)
 {
index b85f484ab8b662ef9681c39e57fe22a51798b42c..70368dc514b00c3aa20888f5d3b91504c3c834c5 100644 (file)
@@ -102,7 +102,7 @@ static void print_gss_error(OM_uint32 err_maj, OM_uint32 err_min)
  * imap_auth_gss - GSS Authentication support
  * @param adata Imap Account data
  * @param method Name of this authentication method
- * @retval enum Result, e.g. #IMAP_AUTH_SUCCESS
+ * @retval #ImapAuthRes Result, e.g. #IMAP_AUTH_SUCCESS
  */
 enum ImapAuthRes imap_auth_gss(struct ImapAccountData *adata, const char *method)
 {
index 8bd523a4fb565200d3468da45d8aaf46a34d56c5..bcd94bbd85a3b0352d5cf20af7590cf306ba5d7f 100644 (file)
@@ -40,7 +40,7 @@
  * imap_auth_login - Plain LOGIN support
  * @param adata Imap Account data
  * @param method Name of this authentication method
- * @retval enum Result, e.g. #IMAP_AUTH_SUCCESS
+ * @retval #ImapAuthRes Result, e.g. #IMAP_AUTH_SUCCESS
  */
 enum ImapAuthRes imap_auth_login(struct ImapAccountData *adata, const char *method)
 {
index 7baa4c15bd6d41b9052550a26e45407bf39537c4..9866597c3d7688ec4276233392ec026b11f3d05d 100644 (file)
@@ -40,7 +40,7 @@
  * imap_auth_plain - SASL PLAIN support
  * @param adata Imap Account data
  * @param method Name of this authentication method
- * @retval enum Result, e.g. #IMAP_AUTH_SUCCESS
+ * @retval #ImapAuthRes Result, e.g. #IMAP_AUTH_SUCCESS
  */
 enum ImapAuthRes imap_auth_plain(struct ImapAccountData *adata, const char *method)
 {
index a7aafb6c2e4f83bac839dcb0816d10d42241f214..f3ecbc39470cd99e64ec301cc1dec3e996db5d78 100644 (file)
@@ -44,7 +44,7 @@
  * imap_auth_sasl - Default authenticator if available
  * @param adata Imap Account data
  * @param method Name of this authentication method
- * @retval enum Result, e.g. #IMAP_AUTH_SUCCESS
+ * @retval #ImapAuthRes Result, e.g. #IMAP_AUTH_SUCCESS
  */
 enum ImapAuthRes imap_auth_sasl(struct ImapAccountData *adata, const char *method)
 {
index f4c9eb25ef9db93b5016ff9455f8ec0256779e1e..ad6756e0ec5448fec028d0c4609d87d0064e0980 100644 (file)
@@ -744,7 +744,7 @@ fallback:
  * imap_continue - display a message and ask the user if they want to go on
  * @param msg  Location of the error
  * @param resp Message for user
- * @retval enum Result, See #QuadOption
+ * @retval #QuadOption Result, e.g. #MUTT_NO
  */
 enum QuadOption imap_continue(const char *msg, const char *resp)
 {
diff --git a/init.c b/init.c
index 37ce5ebbe16bb6f4cf6bbeaebe5d850dea5c64f6..a22e01d24c45578e00757a0e0c412cd1a4ab0d87 100644 (file)
--- a/init.c
+++ b/init.c
@@ -459,7 +459,7 @@ static bool get_hostname(void)
  * @param s    Buffer containing the attachments command
  * @param head List of AttachMatch to add to
  * @param err  Buffer for error messages
- * @retval enum e.g. #MUTT_CMD_SUCCESS
+ * @retval #CommandResult Result e.g. #MUTT_CMD_SUCCESS
  */
 static enum CommandResult parse_attach_list(struct Buffer *buf, struct Buffer *s,
                                             struct ListHead *head, struct Buffer *err)
@@ -3243,7 +3243,7 @@ int mutt_init(bool skip_sys_rc, struct ListHead *commands)
  * @param line  config line to read
  * @param token scratch buffer to be used by parser
  * @param err   where to write error messages
- * @retval enum e.g. #MUTT_CMD_SUCCESS
+ * @retval #CommandResult Result e.g. #MUTT_CMD_SUCCESS
  *
  * Caller should free token->data when finished.  the reason for this variable
  * is to avoid having to allocate and deallocate a lot of memory if we are
@@ -3358,7 +3358,7 @@ int mutt_query_variables(struct ListHead *queries)
  * query_quadoption - Ask the user a quad-question
  * @param opt    Option to use
  * @param prompt Message to show to the user
- * @retval enum Result, see #QuadOption
+ * @retval #QuadOption Result, e.g. #MUTT_NO
  */
 enum QuadOption query_quadoption(enum QuadOption opt, const char *prompt)
 {
index fabeae33ada20470edc04a46c47e5470a7a05819..ae262122e33c013f1d1b46f36b1088750576e865 100644 (file)
--- a/keymap.c
+++ b/keymap.c
@@ -279,7 +279,7 @@ static size_t parsekeys(const char *str, keycode_t *d, size_t max)
  * @param macro Macro string
  * @param desc Description of macro (OPTIONAL)
  * @param err   Buffer for error message
- * @retval enum e.g. #MUTT_CMD_SUCCESS
+ * @retval #CommandResult Result e.g. #MUTT_CMD_SUCCESS
  *
  * Insert a key sequence into the specified map.
  * The map is sorted by ASCII value (lowest to highest)
@@ -387,7 +387,7 @@ static enum CommandResult km_bind_err(const char *s, int menu, int op,
  * @param op    Operation, e.g. OP_DELETE
  * @param macro Macro string
  * @param desc Description of macro (OPTIONAL)
- * @retval enum e.g. #MUTT_CMD_SUCCESS
+ * @retval #CommandResult Result e.g. #MUTT_CMD_SUCCESS
  */
 enum CommandResult km_bind(char *s, int menu, int op, char *macro, char *desc)
 {
@@ -400,7 +400,7 @@ enum CommandResult km_bind(char *s, int menu, int op, char *macro, char *desc)
  * @param menu Menu id, e.g. #MENU_PAGER
  * @param op   Operation, e.g. OP_DELETE
  * @param err  Buffer for error message
- * @retval enum e.g. #MUTT_CMD_SUCCESS
+ * @retval #CommandResult Result e.g. #MUTT_CMD_SUCCESS
  */
 static enum CommandResult km_bindkey_err(const char *s, int menu, int op, struct Buffer *err)
 {
@@ -412,7 +412,7 @@ static enum CommandResult km_bindkey_err(const char *s, int menu, int op, struct
  * @param s    Key string
  * @param menu Menu id, e.g. #MENU_PAGER
  * @param op   Operation, e.g. OP_DELETE
- * @retval enum e.g. #MUTT_CMD_SUCCESS
+ * @retval #CommandResult Result e.g. #MUTT_CMD_SUCCESS
  */
 static enum CommandResult km_bindkey(const char *s, int menu, int op)
 {
@@ -1176,7 +1176,7 @@ error:
  * @param func     Function name
  * @param bindings Key bindings table
  * @param err      Buffer for error message
- * @retval enum e.g. #MUTT_CMD_SUCCESS
+ * @retval #CommandResult Result e.g. #MUTT_CMD_SUCCESS
  */
 static enum CommandResult try_bind(char *key, int menu, char *func,
                                    const struct Binding *bindings, struct Buffer *err)
index 851e907bb16205c664fe1a9a8bee073966b0356c..f17d55bfa0a8a7908bc7338b44669161ea60303e 100644 (file)
@@ -467,7 +467,7 @@ int maildir_move_to_mailbox(struct Mailbox *m, struct Maildir **ptr)
 /**
  * maildir_hcache_keylen - Calculate the length of the Maildir path
  * @param fn File name
- * @retval size_t Length in bytes
+ * @retval num Length in bytes
  *
  * @note This length excludes the flags, which will vary
  */
index 62d20820ec76897836b75cf7fcaa7ef490cccce9..82d25c87377ad8e06ac6025ec1b7afb856b67846 100644 (file)
@@ -696,9 +696,9 @@ time_t mutt_date_add_timeout(time_t now, long timeout)
 }
 
 /**
- * mutt_date_localtime - Converts calendar time to a broken-down time structure expressed in user timezone.
+ * mutt_date_localtime - Converts calendar time to a broken-down time structure expressed in user timezone
  * @param  t  Time
- * @retval tm Broken-down time representation
+ * @retval obj Broken-down time representation
  *
  * Uses current time if t is #MUTT_DATE_NOW
  */
@@ -714,9 +714,9 @@ struct tm mutt_date_localtime(time_t t)
 }
 
 /**
- * mutt_date_gmtime - Converts calendar time to a broken-down time structure expressed in UTC timezone.
+ * mutt_date_gmtime - Converts calendar time to a broken-down time structure expressed in UTC timezone
  * @param  t  Time
- * @retval tm Broken-down time representation
+ * @retval obj Broken-down time representation
  *
  * Uses current time if t is #MUTT_DATE_NOW
  */
index ede1aa3958e39146e061ded3461741c456f6c699..a19081b7b7ac9a1dd1a27fc33511ca538f805912 100644 (file)
@@ -615,8 +615,8 @@ int mutt_file_sanitize_regex(struct Buffer *dest, const char *src)
  * @param[in]  flags    Flags, e.g. #MUTT_CONT
  * @retval ptr          The allocated string
  *
- * Read a line from "fp" into the dynamically allocated "s", increasing
- * "s" if necessary. The ending "\n" or "\r\n" is removed.  If a line ends
+ * Read a line from "fp" into the dynamically allocated "line", increasing
+ * "line" if necessary. The ending "\n" or "\r\n" is removed.  If a line ends
  * with "\", this char and the linefeed is removed, and the next line is read
  * too.
  */
index 87c83fa18c3ea4c4da81de957c3c024055d45320..f4cf6909826d9b0530d8ad372483a075aaf6daa0 100644 (file)
@@ -124,7 +124,7 @@ const char *mutt_str_sysexit(int err_num)
  * char_cmp_identity - Compare two characters
  * @param a First character to compare
  * @param b Second character to compare
- * @retval a == b
+ * @retval true If (a == b)
  */
 static inline bool char_cmp_identity(char a, char b)
 {
@@ -135,7 +135,7 @@ static inline bool char_cmp_identity(char a, char b)
  * char_cmp_lower - Compare two characters ignoring case
  * @param a First character to compare
  * @param b Second character to compare
- * @retval a == b, ignoring case
+ * @retval true If (a == b), ignoring case
  */
 static inline bool char_cmp_lower(char a, char b)
 {
@@ -148,9 +148,9 @@ static inline bool char_cmp_lower(char a, char b)
 typedef bool (*char_cmp)(char, char);
 
 /**
- * get_char_cmp - Retrieve the correct function to compare characters according to a case sensitivity setting.
+ * get_char_cmp - Retrieve the correct function to compare characters according to a case sensitivity setting
  * @param cs Case sensitivity setting
- * @retval A char_cmp function pointer
+ * @retval ptr char_cmp function pointer
  */
 static char_cmp get_char_cmp(enum CaseSensitivity cs)
 {
@@ -158,11 +158,11 @@ static char_cmp get_char_cmp(enum CaseSensitivity cs)
 }
 
 /**
- * mutt_str_startswith - Check whether a string starts with a prefix.
+ * mutt_str_startswith - Check whether a string starts with a prefix
  * @param str String to check
  * @param prefix Prefix to match
  * @param cs Case sensitivity setting
- * @retval Length of prefix if str starts with prefix
+ * @retval num Length of prefix if str starts with prefix
  * @retval 0 if str does not start with prefix
  */
 size_t mutt_str_startswith(const char *str, const char *prefix, enum CaseSensitivity cs)
index 3e39de2c6439706ee633b1ce587311c92c12962d..e1f451b90bdc46bdda67a20ea8cf76b87e682092 100644 (file)
@@ -42,7 +42,7 @@ enum CommandResult
  * @param s    Buffer containing string to be parsed
  * @param data Flags associated with the command
  * @param err  Buffer for error messages
- * @retval enum e.g. #MUTT_CMD_SUCCESS
+ * @retval #CommandResult Result e.g. #MUTT_CMD_SUCCESS
  */
 typedef enum CommandResult (*command_t)(struct Buffer *buf, struct Buffer *s, unsigned long data, struct Buffer *err);
 
index da17944272dfa360addf530e3f64c1d289744959..d339986c56ee5e73f6948fc65021504f6748f831 100644 (file)
@@ -264,7 +264,7 @@ static const char *parse_version_number(const char *s, int *number)
  * @param major Version MAJOR.x.x
  * @param minor Version x.MINOR.x
  * @param micro Version x.x.MICRO
- * @retval str  Patch level
+ * @retval ptr  Patch level string
  * @retval NULL If there are fewer parts
  *
  * Break up the complete string-representation of the version number S, which
@@ -762,7 +762,7 @@ static gpgme_data_t create_gpgme_data(void)
 /**
  * have_gpg_version - Do we have a sufficent GPG version
  * @param version Minimum version
- * @retval bool ZZZ
+ * @retval true If minimum version is available
  *
  * Return true if the OpenPGP engine's version is at least VERSION.
  */
@@ -1549,7 +1549,7 @@ struct Body *smime_gpgme_build_smime_entity(struct Body *a, char *keylist)
  * @param s   State to use
  * @param sig GPGME signature
  * @retval 0 Success
- * @retval 1 There is is a severe warning
+ * @retval 1 There is a severe warning
  *
  * Display the common attributes of the signature summary SUM.
  */
index 96180dcf819a69297c1d05b851c131b855df8862..58352fa49c18ef55db859887521acaa3c05afca0 100644 (file)
@@ -61,7 +61,7 @@
  *   - trust info
  *   - key length
  *   - pubkey algo
- *   - 16 hex digits with the long keyid.
+ *   - 16 hex digits with the long keyid
  *   - timestamp (1998-02-28)
  *   - Local id
  *   - ownertrust
index 5a5d1d9b3a5b1c55c6defcbb2d027c33af1dd436..eb26530310f36673a1a0d5f37f2a3aaa42403b8c 100644 (file)
@@ -1473,9 +1473,7 @@ int smime_class_verify_sender(struct Email *e)
   return rc;
 }
 
-/*
- *    Creating S/MIME - bodies.
- */
+/* Creating S/MIME - bodies */
 
 /**
  * smime_invoke_encrypt - Use SMIME to encrypt a file
@@ -1820,9 +1818,7 @@ struct Body *smime_class_sign_message(struct Body *a)
   return a;
 }
 
-/*
- *    Handling S/MIME - bodies.
- */
+/* Handling S/MIME - bodies */
 
 /**
  * smime_invoke_verify - Use SMIME to verify a file
index b76bd5cc6bb39ff40995d4ce023a17236bddeaa1..4d1cc42e8799e57fa7ba65b2f9333806917deb75 100644 (file)
@@ -1066,7 +1066,7 @@ static void append_thread(header_cache_t *h, struct Mailbox *m,
 /**
  * get_messages - load messages for a query
  * @param query Notmuch query
- * @retval msgs Messages matching query
+ * @retval ptr  Messages matching query
  * @retval NULL Error occurred
  *
  * This helper method is to be the single point for retrieving messages. It
@@ -1136,7 +1136,7 @@ static bool read_mesgs_query(struct Mailbox *m, notmuch_query_t *q, bool dedup)
 /**
  * get_threads - load threads for a query
  * @param query Notmuch query
- * @retval msgs Threads matching query
+ * @retval ptr Threads matching query
  * @retval NULL Error occurred
  *
  * This helper method is to be the single point for retrieving messages. It
index 82d9ae8663cc8588e36799c8449841cbfeb101bb..62d554d6587952fa855dafbcb44ad93352860537 100644 (file)
--- a/rfc3676.c
+++ b/rfc3676.c
@@ -184,7 +184,7 @@ static void flush_par(struct State *s, struct FlowedState *fst)
  * quote_width - Calculate the paragraph width based upon the quote level
  * @param s  State to use
  * @param ql Quote level
- * @retval int Paragraph width
+ * @retval num Paragraph width
  *
  * The start of a quoted line will be ">>> ", so we need to subtract the space
  * required for the prefix from the terminal width.