]> granicus.if.org Git - neomutt/commitdiff
doxy: fix links
authorRichard Russon <rich@flatcap.org>
Mon, 10 Sep 2018 19:59:14 +0000 (20:59 +0100)
committerRichard Russon <rich@flatcap.org>
Mon, 10 Sep 2018 19:59:14 +0000 (20:59 +0100)
23 files changed:
compress.c
config/address.c
config/bool.c
config/long.c
config/magic.c
config/mbtable.c
config/number.c
config/path.c
config/quad.c
config/regex.c
config/sort.c
config/string.c
curs_main.c
imap/imap.c
init.c
maildir/mh.c
mbox/mbox.c
menu.c
mutt_history.c
mutt_logging.c
nntp/nntp.c
notmuch/mutt_notmuch.c
pop/pop.c

index e42e0e2fb825cf877a5d77cd04b8c0cbe4d31789..6061149e9d78c0c1250e18b6af5012d6a08e673f 100644 (file)
@@ -895,7 +895,7 @@ static int comp_msg_close(struct Context *ctx, struct Message *msg)
 }
 
 /**
- * comp_msg_padding_size - Bytes of padding between messages - Implements MxOps::msg_padding_size
+ * comp_msg_padding_size - Bytes of padding between messages - Implements MxOps::msg_padding_size()
  * @param ctx Mailbox
  * @retval num Number of bytes of padding
  */
@@ -916,7 +916,7 @@ static int comp_msg_padding_size(struct Context *ctx)
 }
 
 /**
- * comp_tags_edit - Implements MxOps::tags_edit
+ * comp_tags_edit - Implements MxOps::tags_edit()
  */
 static int comp_tags_edit(struct Context *ctx, const char *tags, char *buf, size_t buflen)
 {
@@ -935,7 +935,7 @@ static int comp_tags_edit(struct Context *ctx, const char *tags, char *buf, size
 }
 
 /**
- * comp_tags_commit - Implements MxOps::tags_commit
+ * comp_tags_commit - Implements MxOps::tags_commit()
  */
 static int comp_tags_commit(struct Context *ctx, struct Header *hdr, char *buf)
 {
@@ -954,7 +954,7 @@ static int comp_tags_commit(struct Context *ctx, struct Header *hdr, char *buf)
 }
 
 /**
- * comp_path_probe - Is this a compressed mailbox? - Implements MxOps::path_probe
+ * comp_path_probe - Is this a compressed mailbox? - Implements MxOps::path_probe()
  */
 int comp_path_probe(const char *path, const struct stat *st)
 {
@@ -971,7 +971,7 @@ int comp_path_probe(const char *path, const struct stat *st)
 }
 
 /**
- * comp_path_canon - Canonicalise a mailbox path - Implements MxOps::path_canon
+ * comp_path_canon - Canonicalise a mailbox path - Implements MxOps::path_canon()
  */
 int comp_path_canon(char *buf, size_t buflen, const char *folder)
 {
@@ -992,7 +992,7 @@ int comp_path_canon(char *buf, size_t buflen, const char *folder)
 }
 
 /**
- * comp_path_pretty - Implements MxOps::path_pretty
+ * comp_path_pretty - Implements MxOps::path_pretty()
  */
 int comp_path_pretty(char *buf, size_t buflen, const char *folder)
 {
@@ -1009,7 +1009,7 @@ int comp_path_pretty(char *buf, size_t buflen, const char *folder)
 }
 
 /**
- * comp_path_parent - Implements MxOps::path_parent
+ * comp_path_parent - Implements MxOps::path_parent()
  */
 int comp_path_parent(char *buf, size_t buflen)
 {
index 46efba7339626f4a6926be09a316c3dc83a027fd..b19fe74e4f0043b2b2f105748da2b2f0d1f7c7bf 100644 (file)
@@ -39,7 +39,7 @@
 #include "types.h"
 
 /**
- * address_destroy - Destroy an Address object - Implements ::cst_destroy
+ * address_destroy - Destroy an Address object - Implements ::cst_destroy()
  */
 static void address_destroy(const struct ConfigSet *cs, void *var, const struct ConfigDef *cdef)
 {
@@ -54,7 +54,7 @@ static void address_destroy(const struct ConfigSet *cs, void *var, const struct
 }
 
 /**
- * address_string_set - Set an Address by string - Implements ::cst_string_set
+ * address_string_set - Set an Address by string - Implements ::cst_string_set()
  */
 static int address_string_set(const struct ConfigSet *cs, void *var, struct ConfigDef *cdef,
                               const char *value, struct Buffer *err)
@@ -107,7 +107,7 @@ static int address_string_set(const struct ConfigSet *cs, void *var, struct Conf
 }
 
 /**
- * address_string_get - Get an Address as a string - Implements ::cst_string_get
+ * address_string_get - Get an Address as a string - Implements ::cst_string_get()
  */
 static int address_string_get(const struct ConfigSet *cs, void *var,
                               const struct ConfigDef *cdef, struct Buffer *result)
@@ -156,7 +156,7 @@ static struct Address *address_dup(struct Address *addr)
 }
 
 /**
- * address_native_set - Set an Address config item by Address object - Implements ::cst_native_set
+ * address_native_set - Set an Address config item by Address object - Implements ::cst_native_set()
  */
 static int address_native_set(const struct ConfigSet *cs, void *var,
                               const struct ConfigDef *cdef, intptr_t value,
@@ -188,7 +188,7 @@ static int address_native_set(const struct ConfigSet *cs, void *var,
 }
 
 /**
- * address_native_get - Get an Address object from an Address config item - Implements ::cst_native_get
+ * address_native_get - Get an Address object from an Address config item - Implements ::cst_native_get()
  */
 static intptr_t address_native_get(const struct ConfigSet *cs, void *var,
                                    const struct ConfigDef *cdef, struct Buffer *err)
@@ -202,7 +202,7 @@ static intptr_t address_native_get(const struct ConfigSet *cs, void *var,
 }
 
 /**
- * address_reset - Reset an Address to its initial value - Implements ::cst_reset
+ * address_reset - Reset an Address to its initial value - Implements ::cst_reset()
  */
 static int address_reset(const struct ConfigSet *cs, void *var,
                          const struct ConfigDef *cdef, struct Buffer *err)
index fe8e1eeff5be03d55137a010747fdd0a3a1e10b4..6b413d0098f5bad3557dca31bd74eaa8ebc310f0 100644 (file)
@@ -49,7 +49,7 @@ const char *bool_values[] = {
 };
 
 /**
- * bool_string_set - Set a Bool by string - Implements ::cst_string_set
+ * bool_string_set - Set a Bool by string - Implements ::cst_string_set()
  */
 static int bool_string_set(const struct ConfigSet *cs, void *var, struct ConfigDef *cdef,
                            const char *value, struct Buffer *err)
@@ -97,7 +97,7 @@ static int bool_string_set(const struct ConfigSet *cs, void *var, struct ConfigD
 }
 
 /**
- * bool_string_get - Get a Bool as a string - Implements ::cst_string_get
+ * bool_string_get - Get a Bool as a string - Implements ::cst_string_get()
  */
 static int bool_string_get(const struct ConfigSet *cs, void *var,
                            const struct ConfigDef *cdef, struct Buffer *result)
@@ -123,7 +123,7 @@ static int bool_string_get(const struct ConfigSet *cs, void *var,
 }
 
 /**
- * bool_native_set - Set a Bool config item by bool - Implements ::cst_native_set
+ * bool_native_set - Set a Bool config item by bool - Implements ::cst_native_set()
  */
 static int bool_native_set(const struct ConfigSet *cs, void *var,
                            const struct ConfigDef *cdef, intptr_t value, struct Buffer *err)
@@ -153,7 +153,7 @@ static int bool_native_set(const struct ConfigSet *cs, void *var,
 }
 
 /**
- * bool_native_get - Get a bool from a Bool config item - Implements ::cst_native_get
+ * bool_native_get - Get a bool from a Bool config item - Implements ::cst_native_get()
  */
 static intptr_t bool_native_get(const struct ConfigSet *cs, void *var,
                                 const struct ConfigDef *cdef, struct Buffer *err)
@@ -165,7 +165,7 @@ static intptr_t bool_native_get(const struct ConfigSet *cs, void *var,
 }
 
 /**
- * bool_reset - Reset a Bool to its initial value - Implements ::cst_reset
+ * bool_reset - Reset a Bool to its initial value - Implements ::cst_reset()
  */
 static int bool_reset(const struct ConfigSet *cs, void *var,
                       const struct ConfigDef *cdef, struct Buffer *err)
index 33ae350a6b117149118b1837023b5f7f92bd388e..db8bd768b27da3795a52f32def1251858d126ee3 100644 (file)
@@ -36,7 +36,7 @@
 #include "types.h"
 
 /**
- * long_string_set - Set a Long by string - Implements ::cst_string_set
+ * long_string_set - Set a Long by string - Implements ::cst_string_set()
  */
 static int long_string_set(const struct ConfigSet *cs, void *var, struct ConfigDef *cdef,
                            const char *value, struct Buffer *err)
@@ -81,7 +81,7 @@ static int long_string_set(const struct ConfigSet *cs, void *var, struct ConfigD
 }
 
 /**
- * long_string_get - Get a Long as a string - Implements ::cst_string_get
+ * long_string_get - Get a Long as a string - Implements ::cst_string_get()
  */
 static int long_string_get(const struct ConfigSet *cs, void *var,
                            const struct ConfigDef *cdef, struct Buffer *result)
@@ -101,7 +101,7 @@ static int long_string_get(const struct ConfigSet *cs, void *var,
 }
 
 /**
- * long_native_set - Set a Long config item by int - Implements ::cst_native_set
+ * long_native_set - Set a Long config item by int - Implements ::cst_native_set()
  */
 static int long_native_set(const struct ConfigSet *cs, void *var,
                            const struct ConfigDef *cdef, intptr_t value, struct Buffer *err)
@@ -131,7 +131,7 @@ static int long_native_set(const struct ConfigSet *cs, void *var,
 }
 
 /**
- * long_native_get - Get an int from a Long config item - Implements ::cst_native_get
+ * long_native_get - Get an int from a Long config item - Implements ::cst_native_get()
  */
 static intptr_t long_native_get(const struct ConfigSet *cs, void *var,
                                 const struct ConfigDef *cdef, struct Buffer *err)
@@ -143,7 +143,7 @@ static intptr_t long_native_get(const struct ConfigSet *cs, void *var,
 }
 
 /**
- * long_reset - Reset a Long to its initial value - Implements ::cst_reset
+ * long_reset - Reset a Long to its initial value - Implements ::cst_reset()
  */
 static int long_reset(const struct ConfigSet *cs, void *var,
                       const struct ConfigDef *cdef, struct Buffer *err)
index 85c5176c7ac05d1e4c9e1f2604c9e3cd7c896e66..3a665283801fd5a2ffaf6034d8de065cb8739a8b 100644 (file)
@@ -45,7 +45,7 @@ const char *magic_values[] = {
 };
 
 /**
- * magic_string_set - Set a Mailbox Magic by string - Implements ::cst_string_set
+ * magic_string_set - Set a Mailbox Magic by string - Implements ::cst_string_set()
  */
 static int magic_string_set(const struct ConfigSet *cs, void *var, struct ConfigDef *cdef,
                             const char *value, struct Buffer *err)
@@ -99,7 +99,7 @@ static int magic_string_set(const struct ConfigSet *cs, void *var, struct Config
 }
 
 /**
- * magic_string_get - Get a Mailbox Magic as a string - Implements ::cst_string_get
+ * magic_string_get - Get a Mailbox Magic as a string - Implements ::cst_string_get()
  */
 static int magic_string_get(const struct ConfigSet *cs, void *var,
                             const struct ConfigDef *cdef, struct Buffer *result)
@@ -125,7 +125,7 @@ static int magic_string_get(const struct ConfigSet *cs, void *var,
 }
 
 /**
- * magic_native_set - Set a Mailbox Magic config item by int - Implements ::cst_native_set
+ * magic_native_set - Set a Mailbox Magic config item by int - Implements ::cst_native_set()
  */
 static int magic_native_set(const struct ConfigSet *cs, void *var,
                             const struct ConfigDef *cdef, intptr_t value, struct Buffer *err)
@@ -155,7 +155,7 @@ static int magic_native_set(const struct ConfigSet *cs, void *var,
 }
 
 /**
- * magic_native_get - Get an int from a Mailbox Magic config item - Implements ::cst_native_get
+ * magic_native_get - Get an int from a Mailbox Magic config item - Implements ::cst_native_get()
  */
 static intptr_t magic_native_get(const struct ConfigSet *cs, void *var,
                                  const struct ConfigDef *cdef, struct Buffer *err)
@@ -167,7 +167,7 @@ static intptr_t magic_native_get(const struct ConfigSet *cs, void *var,
 }
 
 /**
- * magic_reset - Reset a Mailbox Magic to its initial value - Implements ::cst_reset
+ * magic_reset - Reset a Mailbox Magic to its initial value - Implements ::cst_reset()
  */
 static int magic_reset(const struct ConfigSet *cs, void *var,
                        const struct ConfigDef *cdef, struct Buffer *err)
index d6f248fb46553a91535151f5a0cea0bd6f077454..e66fa7b014accde47258fa87d0427a96c2a70888 100644 (file)
@@ -88,7 +88,7 @@ struct MbTable *mbtable_parse(const char *s)
 }
 
 /**
- * mbtable_destroy - Destroy an MbTable object - Implements ::cst_destroy
+ * mbtable_destroy - Destroy an MbTable object - Implements ::cst_destroy()
  */
 static void mbtable_destroy(const struct ConfigSet *cs, void *var, const struct ConfigDef *cdef)
 {
@@ -103,7 +103,7 @@ static void mbtable_destroy(const struct ConfigSet *cs, void *var, const struct
 }
 
 /**
- * mbtable_string_set - Set a MbTable by string - Implements ::cst_string_set
+ * mbtable_string_set - Set a MbTable by string - Implements ::cst_string_set()
  */
 static int mbtable_string_set(const struct ConfigSet *cs, void *var, struct ConfigDef *cdef,
                               const char *value, struct Buffer *err)
@@ -157,7 +157,7 @@ static int mbtable_string_set(const struct ConfigSet *cs, void *var, struct Conf
 }
 
 /**
- * mbtable_string_get - Get a MbTable as a string - Implements ::cst_string_get
+ * mbtable_string_get - Get a MbTable as a string - Implements ::cst_string_get()
  */
 static int mbtable_string_get(const struct ConfigSet *cs, void *var,
                               const struct ConfigDef *cdef, struct Buffer *result)
@@ -199,7 +199,7 @@ static struct MbTable *mbtable_dup(struct MbTable *table)
 }
 
 /**
- * mbtable_native_set - Set a MbTable config item by MbTable object - Implements ::cst_native_set
+ * mbtable_native_set - Set a MbTable config item by MbTable object - Implements ::cst_native_set()
  */
 static int mbtable_native_set(const struct ConfigSet *cs, void *var,
                               const struct ConfigDef *cdef, intptr_t value,
@@ -231,7 +231,7 @@ static int mbtable_native_set(const struct ConfigSet *cs, void *var,
 }
 
 /**
- * mbtable_native_get - Get an MbTable object from a MbTable config item - Implements ::cst_native_get
+ * mbtable_native_get - Get an MbTable object from a MbTable config item - Implements ::cst_native_get()
  */
 static intptr_t mbtable_native_get(const struct ConfigSet *cs, void *var,
                                    const struct ConfigDef *cdef, struct Buffer *err)
@@ -245,7 +245,7 @@ static intptr_t mbtable_native_get(const struct ConfigSet *cs, void *var,
 }
 
 /**
- * mbtable_reset - Reset an MbTable to its initial value - Implements ::cst_reset
+ * mbtable_reset - Reset an MbTable to its initial value - Implements ::cst_reset()
  */
 static int mbtable_reset(const struct ConfigSet *cs, void *var,
                          const struct ConfigDef *cdef, struct Buffer *err)
index 3de938cf24a41abc606672740bde082ed0975c5e..18a1fbf7f65a1f06c83a48d75876915cd1e83c92 100644 (file)
@@ -36,7 +36,7 @@
 #include "types.h"
 
 /**
- * number_string_set - Set a Number by string - Implements ::cst_string_set
+ * number_string_set - Set a Number by string - Implements ::cst_string_set()
  */
 static int number_string_set(const struct ConfigSet *cs, void *var, struct ConfigDef *cdef,
                              const char *value, struct Buffer *err)
@@ -93,7 +93,7 @@ static int number_string_set(const struct ConfigSet *cs, void *var, struct Confi
 }
 
 /**
- * number_string_get - Get a Number as a string - Implements ::cst_string_get
+ * number_string_get - Get a Number as a string - Implements ::cst_string_get()
  */
 static int number_string_get(const struct ConfigSet *cs, void *var,
                              const struct ConfigDef *cdef, struct Buffer *result)
@@ -113,7 +113,7 @@ static int number_string_get(const struct ConfigSet *cs, void *var,
 }
 
 /**
- * number_native_set - Set a Number config item by int - Implements ::cst_native_set
+ * number_native_set - Set a Number config item by int - Implements ::cst_native_set()
  */
 static int number_native_set(const struct ConfigSet *cs, void *var,
                              const struct ConfigDef *cdef, intptr_t value,
@@ -150,7 +150,7 @@ static int number_native_set(const struct ConfigSet *cs, void *var,
 }
 
 /**
- * number_native_get - Get an int from a Number config item - Implements ::cst_native_get
+ * number_native_get - Get an int from a Number config item - Implements ::cst_native_get()
  */
 static intptr_t number_native_get(const struct ConfigSet *cs, void *var,
                                   const struct ConfigDef *cdef, struct Buffer *err)
@@ -162,7 +162,7 @@ static intptr_t number_native_get(const struct ConfigSet *cs, void *var,
 }
 
 /**
- * number_reset - Reset a Number to its initial value - Implements ::cst_reset
+ * number_reset - Reset a Number to its initial value - Implements ::cst_reset()
  */
 static int number_reset(const struct ConfigSet *cs, void *var,
                         const struct ConfigDef *cdef, struct Buffer *err)
index 0ef48f78ff8971044d9c33f24d50048121cfaefd..8b19fecf3fa94cf12474c0a30ca2938dfb42ca81 100644 (file)
@@ -37,7 +37,7 @@
 #include "types.h"
 
 /**
- * path_destroy - Destroy a Path - Implements ::cst_destroy
+ * path_destroy - Destroy a Path - Implements ::cst_destroy()
  */
 static void path_destroy(const struct ConfigSet *cs, void *var, const struct ConfigDef *cdef)
 {
@@ -59,7 +59,7 @@ static void path_destroy(const struct ConfigSet *cs, void *var, const struct Con
 }
 
 /**
- * path_string_set - Set a Path by string - Implements ::cst_string_set
+ * path_string_set - Set a Path by string - Implements ::cst_string_set()
  */
 static int path_string_set(const struct ConfigSet *cs, void *var, struct ConfigDef *cdef,
                            const char *value, struct Buffer *err)
@@ -117,7 +117,7 @@ static int path_string_set(const struct ConfigSet *cs, void *var, struct ConfigD
 }
 
 /**
- * path_string_get - Get a Path as a string - Implements ::cst_string_get
+ * path_string_get - Get a Path as a string - Implements ::cst_string_get()
  */
 static int path_string_get(const struct ConfigSet *cs, void *var,
                            const struct ConfigDef *cdef, struct Buffer *result)
@@ -140,7 +140,7 @@ static int path_string_get(const struct ConfigSet *cs, void *var,
 }
 
 /**
- * path_native_set - Set a Path config item by string - Implements ::cst_native_set
+ * path_native_set - Set a Path config item by string - Implements ::cst_native_set()
  */
 static int path_native_set(const struct ConfigSet *cs, void *var,
                            const struct ConfigDef *cdef, intptr_t value, struct Buffer *err)
@@ -185,7 +185,7 @@ static int path_native_set(const struct ConfigSet *cs, void *var,
 }
 
 /**
- * path_native_get - Get a string from a Path config item - Implements ::cst_native_get
+ * path_native_get - Get a string from a Path config item - Implements ::cst_native_get()
  */
 static intptr_t path_native_get(const struct ConfigSet *cs, void *var,
                                 const struct ConfigDef *cdef, struct Buffer *err)
@@ -199,7 +199,7 @@ static intptr_t path_native_get(const struct ConfigSet *cs, void *var,
 }
 
 /**
- * path_reset - Reset a Path to its initial value - Implements ::cst_reset
+ * path_reset - Reset a Path to its initial value - Implements ::cst_reset()
  */
 static int path_reset(const struct ConfigSet *cs, void *var,
                       const struct ConfigDef *cdef, struct Buffer *err)
index aa43cbc064b9f7fda33f7d672e03fa037703a9bf..f841274100d92d6d09d406bceeabfbc2bd4b1b75 100644 (file)
@@ -48,7 +48,7 @@ const char *quad_values[] = {
 };
 
 /**
- * quad_string_set - Set a Quad-option by string - Implements ::cst_string_set
+ * quad_string_set - Set a Quad-option by string - Implements ::cst_string_set()
  */
 static int quad_string_set(const struct ConfigSet *cs, void *var, struct ConfigDef *cdef,
                            const char *value, struct Buffer *err)
@@ -96,7 +96,7 @@ static int quad_string_set(const struct ConfigSet *cs, void *var, struct ConfigD
 }
 
 /**
- * quad_string_get - Get a Quad-option as a string - Implements ::cst_string_get
+ * quad_string_get - Get a Quad-option as a string - Implements ::cst_string_get()
  */
 static int quad_string_get(const struct ConfigSet *cs, void *var,
                            const struct ConfigDef *cdef, struct Buffer *result)
@@ -122,7 +122,7 @@ static int quad_string_get(const struct ConfigSet *cs, void *var,
 }
 
 /**
- * quad_native_set - Set a Quad-option config item by int - Implements ::cst_native_set
+ * quad_native_set - Set a Quad-option config item by int - Implements ::cst_native_set()
  */
 static int quad_native_set(const struct ConfigSet *cs, void *var,
                            const struct ConfigDef *cdef, intptr_t value, struct Buffer *err)
@@ -152,7 +152,7 @@ static int quad_native_set(const struct ConfigSet *cs, void *var,
 }
 
 /**
- * quad_native_get - Get an int object from a Quad-option config item - Implements ::cst_native_get
+ * quad_native_get - Get an int object from a Quad-option config item - Implements ::cst_native_get()
  */
 static intptr_t quad_native_get(const struct ConfigSet *cs, void *var,
                                 const struct ConfigDef *cdef, struct Buffer *err)
@@ -164,7 +164,7 @@ static intptr_t quad_native_get(const struct ConfigSet *cs, void *var,
 }
 
 /**
- * quad_reset - Reset a Quad-option to its initial value - Implements ::cst_reset
+ * quad_reset - Reset a Quad-option to its initial value - Implements ::cst_reset()
  */
 static int quad_reset(const struct ConfigSet *cs, void *var,
                       const struct ConfigDef *cdef, struct Buffer *err)
index 18df26b888cdbbe26fef9dec484f4a19916d76cf..3875928874240169c0f1dff15ff1ca0a5f25ee57 100644 (file)
@@ -42,7 +42,7 @@
 #include "types.h"
 
 /**
- * regex_destroy - Destroy a Regex object - Implements ::cst_destroy
+ * regex_destroy - Destroy a Regex object - Implements ::cst_destroy()
  */
 static void regex_destroy(const struct ConfigSet *cs, void *var, const struct ConfigDef *cdef)
 {
@@ -57,7 +57,7 @@ static void regex_destroy(const struct ConfigSet *cs, void *var, const struct Co
 }
 
 /**
- * regex_string_set - Set a Regex by string - Implements ::cst_string_set
+ * regex_string_set - Set a Regex by string - Implements ::cst_string_set()
  */
 static int regex_string_set(const struct ConfigSet *cs, void *var, struct ConfigDef *cdef,
                             const char *value, struct Buffer *err)
@@ -117,7 +117,7 @@ static int regex_string_set(const struct ConfigSet *cs, void *var, struct Config
 }
 
 /**
- * regex_string_get - Get a Regex as a string - Implements ::cst_string_get
+ * regex_string_get - Get a Regex as a string - Implements ::cst_string_get()
  */
 static int regex_string_get(const struct ConfigSet *cs, void *var,
                             const struct ConfigDef *cdef, struct Buffer *result)
@@ -146,7 +146,7 @@ static int regex_string_get(const struct ConfigSet *cs, void *var,
 }
 
 /**
- * regex_native_set - Set a Regex config item by Regex object - Implements ::cst_native_set
+ * regex_native_set - Set a Regex config item by Regex object - Implements ::cst_native_set()
  */
 static int regex_native_set(const struct ConfigSet *cs, void *var,
                             const struct ConfigDef *cdef, intptr_t value, struct Buffer *err)
@@ -190,7 +190,7 @@ static int regex_native_set(const struct ConfigSet *cs, void *var,
 }
 
 /**
- * regex_native_get - Get a Regex object from a Regex config item - Implements ::cst_native_get
+ * regex_native_get - Get a Regex object from a Regex config item - Implements ::cst_native_get()
  */
 static intptr_t regex_native_get(const struct ConfigSet *cs, void *var,
                                  const struct ConfigDef *cdef, struct Buffer *err)
@@ -204,7 +204,7 @@ static intptr_t regex_native_get(const struct ConfigSet *cs, void *var,
 }
 
 /**
- * regex_reset - Reset a Regex to its initial value - Implements ::cst_reset
+ * regex_reset - Reset a Regex to its initial value - Implements ::cst_reset()
  */
 static int regex_reset(const struct ConfigSet *cs, void *var,
                        const struct ConfigDef *cdef, struct Buffer *err)
index 0d16e4e9865bb40fde348cb890c197c7ad36bc8a..bf13c134352d2188962e832b169aba3cdabe1d47 100644 (file)
@@ -132,7 +132,7 @@ const struct Mapping SortSidebarMethods[] = {
 // clang-format on
 
 /**
- * sort_string_set - Set a Sort by string - Implements ::cst_string_set
+ * sort_string_set - Set a Sort by string - Implements ::cst_string_set()
  */
 static int sort_string_set(const struct ConfigSet *cs, void *var, struct ConfigDef *cdef,
                            const char *value, struct Buffer *err)
@@ -219,7 +219,7 @@ static int sort_string_set(const struct ConfigSet *cs, void *var, struct ConfigD
 }
 
 /**
- * sort_string_get - Get a Sort as a string - Implements ::cst_string_get
+ * sort_string_get - Get a Sort as a string - Implements ::cst_string_get()
  */
 static int sort_string_get(const struct ConfigSet *cs, void *var,
                            const struct ConfigDef *cdef, struct Buffer *result)
@@ -281,7 +281,7 @@ static int sort_string_get(const struct ConfigSet *cs, void *var,
 }
 
 /**
- * sort_native_set - Set a Sort config item by int - Implements ::cst_native_set
+ * sort_native_set - Set a Sort config item by int - Implements ::cst_native_set()
  */
 static int sort_native_set(const struct ConfigSet *cs, void *var,
                            const struct ConfigDef *cdef, intptr_t value, struct Buffer *err)
@@ -339,7 +339,7 @@ static int sort_native_set(const struct ConfigSet *cs, void *var,
 }
 
 /**
- * sort_native_get - Get an int from a Sort config item - Implements ::cst_native_get
+ * sort_native_get - Get an int from a Sort config item - Implements ::cst_native_get()
  */
 static intptr_t sort_native_get(const struct ConfigSet *cs, void *var,
                                 const struct ConfigDef *cdef, struct Buffer *err)
@@ -351,7 +351,7 @@ static intptr_t sort_native_get(const struct ConfigSet *cs, void *var,
 }
 
 /**
- * sort_reset - Reset a Sort to its initial value - Implements ::cst_reset
+ * sort_reset - Reset a Sort to its initial value - Implements ::cst_reset()
  */
 static int sort_reset(const struct ConfigSet *cs, void *var,
                       const struct ConfigDef *cdef, struct Buffer *err)
index 9019866ac6f46122a3e9bde5a9879280760c160a..73d3e6f7717f5f575de30cd66da0e0381782b071 100644 (file)
@@ -37,7 +37,7 @@
 #include "types.h"
 
 /**
- * string_destroy - Destroy a String - Implements ::cst_destroy
+ * string_destroy - Destroy a String - Implements ::cst_destroy()
  */
 static void string_destroy(const struct ConfigSet *cs, void *var, const struct ConfigDef *cdef)
 {
@@ -59,7 +59,7 @@ static void string_destroy(const struct ConfigSet *cs, void *var, const struct C
 }
 
 /**
- * string_string_set - Set a String by string - Implements ::cst_string_set
+ * string_string_set - Set a String by string - Implements ::cst_string_set()
  */
 static int string_string_set(const struct ConfigSet *cs, void *var, struct ConfigDef *cdef,
                              const char *value, struct Buffer *err)
@@ -117,7 +117,7 @@ static int string_string_set(const struct ConfigSet *cs, void *var, struct Confi
 }
 
 /**
- * string_string_get - Get a String as a string - Implements ::cst_string_get
+ * string_string_get - Get a String as a string - Implements ::cst_string_get()
  */
 static int string_string_get(const struct ConfigSet *cs, void *var,
                              const struct ConfigDef *cdef, struct Buffer *result)
@@ -140,7 +140,7 @@ static int string_string_get(const struct ConfigSet *cs, void *var,
 }
 
 /**
- * string_native_set - Set a String config item by string - Implements ::cst_native_set
+ * string_native_set - Set a String config item by string - Implements ::cst_native_set()
  */
 static int string_native_set(const struct ConfigSet *cs, void *var,
                              const struct ConfigDef *cdef, intptr_t value,
@@ -186,7 +186,7 @@ static int string_native_set(const struct ConfigSet *cs, void *var,
 }
 
 /**
- * string_native_get - Get a string from a String config item - Implements ::cst_native_get
+ * string_native_get - Get a string from a String config item - Implements ::cst_native_get()
  */
 static intptr_t string_native_get(const struct ConfigSet *cs, void *var,
                                   const struct ConfigDef *cdef, struct Buffer *err)
@@ -200,7 +200,7 @@ static intptr_t string_native_get(const struct ConfigSet *cs, void *var,
 }
 
 /**
- * string_reset - Reset a String to its initial value - Implements ::cst_reset
+ * string_reset - Reset a String to its initial value - Implements ::cst_reset()
  */
 static int string_reset(const struct ConfigSet *cs, void *var,
                         const struct ConfigDef *cdef, struct Buffer *err)
index 4c242c5ac9b5099462e71a35dae3f4c16b008dce..d46c939103a6b0d30251b44a5eae703f213a00e3 100644 (file)
@@ -3541,7 +3541,7 @@ void mutt_set_header_color(struct Context *ctx, struct Header *curhdr)
 }
 
 /**
- * mutt_reply_listener - Listen for config changes to "reply_regex" - Implements ::cs_listener
+ * mutt_reply_listener - Listen for config changes to "reply_regex" - Implements ::cs_listener()
  */
 bool mutt_reply_listener(const struct ConfigSet *cs, struct HashElem *he,
                          const char *name, enum ConfigEvent ev)
index 5a5d1795d64f85b5faf7bd9fdaa23d214c3d7c86..e7508e4f5044cd03e96b6bcbfe865369c4772c06 100644 (file)
@@ -2760,7 +2760,7 @@ static int imap_tags_commit(struct Context *ctx, struct Header *hdr, char *buf)
 }
 
 /**
- * imap_path_probe - Is this an IMAP mailbox? - Implements MxOps::path_probe
+ * imap_path_probe - Is this an IMAP mailbox? - Implements MxOps::path_probe()
  */
 int imap_path_probe(const char *path, const struct stat *st)
 {
@@ -2777,7 +2777,7 @@ int imap_path_probe(const char *path, const struct stat *st)
 }
 
 /**
- * imap_path_canon - Canonicalise a mailbox path - Implements MxOps::path_canon
+ * imap_path_canon - Canonicalise a mailbox path - Implements MxOps::path_canon()
  */
 int imap_path_canon(char *buf, size_t buflen, const char *folder)
 {
@@ -2805,7 +2805,7 @@ int imap_path_canon(char *buf, size_t buflen, const char *folder)
 }
 
 /**
- * imap_path_pretty - Implements MxOps::path_pretty
+ * imap_path_pretty - Implements MxOps::path_pretty()
  */
 int imap_path_pretty(char *buf, size_t buflen, const char *folder)
 {
@@ -2817,7 +2817,7 @@ int imap_path_pretty(char *buf, size_t buflen, const char *folder)
 }
 
 /**
- * imap_path_parent - Implements MxOps::path_parent
+ * imap_path_parent - Implements MxOps::path_parent()
  */
 int imap_path_parent(char *buf, size_t buflen)
 {
diff --git a/init.c b/init.c
index 43ae05fd65b0a25474faefafd8594ac041ccaeb1..06f85377e2ae3b093dde7e06ba85df657c968dc0 100644 (file)
--- a/init.c
+++ b/init.c
@@ -3688,7 +3688,7 @@ struct ConfigSet *init_config(size_t size)
 }
 
 /**
- * charset_validator - Validate the "charset" config variable - Implements ::cs_validator
+ * charset_validator - Validate the "charset" config variable - Implements ::cs_validator()
  */
 int charset_validator(const struct ConfigSet *cs, const struct ConfigDef *cdef,
                       intptr_t value, struct Buffer *err)
@@ -3721,7 +3721,7 @@ int charset_validator(const struct ConfigSet *cs, const struct ConfigDef *cdef,
 
 #ifdef USE_HCACHE
 /**
- * hcache_validator - Validate the "header_cache_backend" config variable - Implements ::cs_validator
+ * hcache_validator - Validate the "header_cache_backend" config variable - Implements ::cs_validator()
  */
 int hcache_validator(const struct ConfigSet *cs, const struct ConfigDef *cdef,
                      intptr_t value, struct Buffer *err)
@@ -3740,7 +3740,7 @@ int hcache_validator(const struct ConfigSet *cs, const struct ConfigDef *cdef,
 #endif
 
 /**
- * pager_validator - Check for config variables that can't be set from the pager - Implements ::cs_validator
+ * pager_validator - Check for config variables that can't be set from the pager - Implements ::cs_validator()
  */
 int pager_validator(const struct ConfigSet *cs, const struct ConfigDef *cdef,
                     intptr_t value, struct Buffer *err)
@@ -3756,7 +3756,7 @@ int pager_validator(const struct ConfigSet *cs, const struct ConfigDef *cdef,
 }
 
 /**
- * multipart_validator - Validate the "show_multipart_alternative" config variable - Implements ::cs_validator
+ * multipart_validator - Validate the "show_multipart_alternative" config variable - Implements ::cs_validator()
  */
 int multipart_validator(const struct ConfigSet *cs, const struct ConfigDef *cdef,
                         intptr_t value, struct Buffer *err)
@@ -3774,7 +3774,7 @@ int multipart_validator(const struct ConfigSet *cs, const struct ConfigDef *cdef
 }
 
 /**
- * reply_validator - Validate the "reply_regex" config variable - Implements ::cs_validator
+ * reply_validator - Validate the "reply_regex" config variable - Implements ::cs_validator()
  */
 int reply_validator(const struct ConfigSet *cs, const struct ConfigDef *cdef,
                     intptr_t value, struct Buffer *err)
index 4819e1595bc9ee9d9f41be17f9ffc146f410666a..1eff2a05d0e3c155e7c23b478d9fc95d506c7a5e 100644 (file)
@@ -2901,7 +2901,7 @@ int mh_check_empty(const char *path)
 }
 
 /**
- * maildir_path_probe - Is this a Maildir mailbox? - Implements MxOps::path_probe
+ * maildir_path_probe - Is this a Maildir mailbox? - Implements MxOps::path_probe()
  */
 int maildir_path_probe(const char *path, const struct stat *st)
 {
@@ -2922,7 +2922,7 @@ int maildir_path_probe(const char *path, const struct stat *st)
 }
 
 /**
- * mh_path_probe - Is this an mh mailbox? - Implements MxOps::path_probe
+ * mh_path_probe - Is this an mh mailbox? - Implements MxOps::path_probe()
  */
 int mh_path_probe(const char *path, const struct stat *st)
 {
@@ -2965,7 +2965,7 @@ int mh_path_probe(const char *path, const struct stat *st)
 }
 
 /**
- * maildir_path_canon - Canonicalise a mailbox path - Implements MxOps::path_canon
+ * maildir_path_canon - Canonicalise a mailbox path - Implements MxOps::path_canon()
  */
 int maildir_path_canon(char *buf, size_t buflen, const char *folder)
 {
@@ -2986,7 +2986,7 @@ int maildir_path_canon(char *buf, size_t buflen, const char *folder)
 }
 
 /**
- * maildir_path_pretty - Implements MxOps::path_pretty
+ * maildir_path_pretty - Implements MxOps::path_pretty()
  */
 int maildir_path_pretty(char *buf, size_t buflen, const char *folder)
 {
@@ -3003,7 +3003,7 @@ int maildir_path_pretty(char *buf, size_t buflen, const char *folder)
 }
 
 /**
- * maildir_path_parent - Implements MxOps::path_parent
+ * maildir_path_parent - Implements MxOps::path_parent()
  */
 int maildir_path_parent(char *buf, size_t buflen)
 {
index 6e59f896156cb2dd7d138d067cfe50e185515181..e36ddfd863109e1a537d9cb6e35dab915276c9b5 100644 (file)
@@ -735,7 +735,7 @@ static int mbox_msg_open_new(struct Context *ctx, struct Message *msg, struct He
 }
 
 /**
- * mbox_msg_padding_size - Bytes of padding between messages - Implements MxOps::msg_padding_size
+ * mbox_msg_padding_size - Bytes of padding between messages - Implements MxOps::msg_padding_size()
  * @param ctx Mailbox
  * @retval 1 Always
  */
@@ -745,7 +745,7 @@ static int mbox_msg_padding_size(struct Context *ctx)
 }
 
 /**
- * mmdf_msg_padding_size - Bytes of padding between messages - Implements MxOps::msg_padding_size
+ * mmdf_msg_padding_size - Bytes of padding between messages - Implements MxOps::msg_padding_size()
  * @param ctx Mailbox
  * @retval 10 Always
  */
@@ -1491,7 +1491,7 @@ bail: /* Come here in case of disaster */
 }
 
 /**
- * mbox_path_probe - Is this an mbox mailbox? - Implements MxOps::path_probe
+ * mbox_path_probe - Is this an mbox mailbox? - Implements MxOps::path_probe()
  */
 int mbox_path_probe(const char *path, const struct stat *st)
 {
@@ -1552,7 +1552,7 @@ int mbox_path_probe(const char *path, const struct stat *st)
 }
 
 /**
- * mbox_path_canon - Canonicalise a mailbox path - Implements MxOps::path_canon
+ * mbox_path_canon - Canonicalise a mailbox path - Implements MxOps::path_canon()
  */
 int mbox_path_canon(char *buf, size_t buflen, const char *folder)
 {
@@ -1573,7 +1573,7 @@ int mbox_path_canon(char *buf, size_t buflen, const char *folder)
 }
 
 /**
- * mbox_path_pretty - Implements MxOps::path_pretty
+ * mbox_path_pretty - Implements MxOps::path_pretty()
  */
 int mbox_path_pretty(char *buf, size_t buflen, const char *folder)
 {
@@ -1590,7 +1590,7 @@ int mbox_path_pretty(char *buf, size_t buflen, const char *folder)
 }
 
 /**
- * mbox_path_parent - Implements MxOps::path_parent
+ * mbox_path_parent - Implements MxOps::path_parent()
  */
 int mbox_path_parent(char *buf, size_t buflen)
 {
diff --git a/menu.c b/menu.c
index daedc23beab75279598fb733fc42a0c8cbc522af..9ce5299bace9afa879f843cb8a73813a1dd66499 100644 (file)
--- a/menu.c
+++ b/menu.c
@@ -1577,7 +1577,7 @@ int mutt_menu_loop(struct Menu *menu)
 }
 
 /**
- * mutt_menu_listener - Listen for config changes affecting the menu - Implements ::cs_listener
+ * mutt_menu_listener - Listen for config changes affecting the menu - Implements ::cs_listener()
  */
 bool mutt_menu_listener(const struct ConfigSet *cs, struct HashElem *he,
                         const char *name, enum ConfigEvent ev)
index 2b650220357fa633ecd46fcdbceb15714ad72d07..bec47e0c8444006c46e6c53394af28f87a825a51 100644 (file)
@@ -142,7 +142,7 @@ void mutt_hist_complete(char *buf, size_t buflen, enum HistoryClass hclass)
 }
 
 /**
- * mutt_hist_listener - Listen for config changes affecting the history - Implements ::cs_listener
+ * mutt_hist_listener - Listen for config changes affecting the history - Implements ::cs_listener()
  */
 bool mutt_hist_listener(const struct ConfigSet *cs, struct HashElem *he,
                         const char *name, enum ConfigEvent ev)
index 97469ce2e5a6d892b44b21f00c2d6d6932006b34..97d29371a6bdc11d2c924ec0019345548ea20762 100644 (file)
@@ -335,7 +335,7 @@ int level_validator(const struct ConfigSet *cs, const struct ConfigDef *cdef,
 }
 
 /**
- * mutt_log_listener - Listen for config changes affecting the log file - Implements ::cs_listener
+ * mutt_log_listener - Listen for config changes affecting the log file - Implements ::cs_listener()
  */
 bool mutt_log_listener(const struct ConfigSet *cs, struct HashElem *he,
                        const char *name, enum ConfigEvent ev)
index 321aa2f044d38202b2aa054dc903dde11a15034f..f81e55f6a14f562a121c01473e59b48699c45731 100644 (file)
@@ -2630,7 +2630,7 @@ int nntp_compare_order(const void *a, const void *b)
 }
 
 /**
- * nntp_path_probe - Is this an NNTP mailbox? - Implements MxOps::path_probe
+ * nntp_path_probe - Is this an NNTP mailbox? - Implements MxOps::path_probe()
  */
 int nntp_path_probe(const char *path, const struct stat *st)
 {
@@ -2647,7 +2647,7 @@ int nntp_path_probe(const char *path, const struct stat *st)
 }
 
 /**
- * nntp_path_canon - Canonicalise a mailbox path - Implements MxOps::path_canon
+ * nntp_path_canon - Canonicalise a mailbox path - Implements MxOps::path_canon()
  */
 int nntp_path_canon(char *buf, size_t buflen, const char *folder)
 {
@@ -2675,7 +2675,7 @@ int nntp_path_canon(char *buf, size_t buflen, const char *folder)
 }
 
 /**
- * nntp_path_pretty - Implements MxOps::path_pretty
+ * nntp_path_pretty - Implements MxOps::path_pretty()
  */
 int nntp_path_pretty(char *buf, size_t buflen, const char *folder)
 {
@@ -2684,7 +2684,7 @@ int nntp_path_pretty(char *buf, size_t buflen, const char *folder)
 }
 
 /**
- * nntp_path_parent - Implements MxOps::path_parent
+ * nntp_path_parent - Implements MxOps::path_parent()
  */
 int nntp_path_parent(char *buf, size_t buflen)
 {
index 73e3cc9bef2f1ea2f68b212bb8b8ec451ea07467..002f964a38512cefac7da45626decd8d4ee3ee16 100644 (file)
@@ -2764,7 +2764,7 @@ static int nm_msg_commit(struct Context *ctx, struct Message *msg)
 }
 
 /**
- * nm_path_probe - Is this a Notmuch mailbox? - Implements MxOps::path_probe
+ * nm_path_probe - Is this a Notmuch mailbox? - Implements MxOps::path_probe()
  */
 int nm_path_probe(const char *path, const struct stat *st)
 {
@@ -2778,7 +2778,7 @@ int nm_path_probe(const char *path, const struct stat *st)
 }
 
 /**
- * nm_path_canon - Canonicalise a mailbox path - Implements MxOps::path_canon
+ * nm_path_canon - Canonicalise a mailbox path - Implements MxOps::path_canon()
  */
 int nm_path_canon(char *buf, size_t buflen, const char *folder)
 {
@@ -2806,7 +2806,7 @@ int nm_path_canon(char *buf, size_t buflen, const char *folder)
 }
 
 /**
- * nm_path_pretty - Implements MxOps::path_pretty
+ * nm_path_pretty - Implements MxOps::path_pretty()
  */
 int nm_path_pretty(char *buf, size_t buflen, const char *folder)
 {
@@ -2815,7 +2815,7 @@ int nm_path_pretty(char *buf, size_t buflen, const char *folder)
 }
 
 /**
- * nm_path_parent - Implements MxOps::path_parent
+ * nm_path_parent - Implements MxOps::path_parent()
  */
 int nm_path_parent(char *buf, size_t buflen)
 {
index 0551536b1a1e2e350ad83c7d1aedb2995e4697ce..e0db0de88e5e81ca693f1ccabcd51389b6380d3f 100644 (file)
--- a/pop/pop.c
+++ b/pop/pop.c
@@ -1066,7 +1066,7 @@ fail:
 }
 
 /**
- * pop_path_probe - Is this a POP mailbox? - Implements MxOps::path_probe
+ * pop_path_probe - Is this a POP mailbox? - Implements MxOps::path_probe()
  */
 int pop_path_probe(const char *path, const struct stat *st)
 {
@@ -1083,7 +1083,7 @@ int pop_path_probe(const char *path, const struct stat *st)
 }
 
 /**
- * pop_path_canon - Canonicalise a mailbox path - Implements MxOps::path_canon
+ * pop_path_canon - Canonicalise a mailbox path - Implements MxOps::path_canon()
  */
 int pop_path_canon(char *buf, size_t buflen, const char *folder)
 {
@@ -1111,7 +1111,7 @@ int pop_path_canon(char *buf, size_t buflen, const char *folder)
 }
 
 /**
- * pop_path_pretty - Implements MxOps::path_pretty
+ * pop_path_pretty - Implements MxOps::path_pretty()
  */
 int pop_path_pretty(char *buf, size_t buflen, const char *folder)
 {
@@ -1120,7 +1120,7 @@ int pop_path_pretty(char *buf, size_t buflen, const char *folder)
 }
 
 /**
- * pop_path_parent - Implements MxOps::path_parent
+ * pop_path_parent - Implements MxOps::path_parent()
  */
 int pop_path_parent(char *buf, size_t buflen)
 {