summaryrefslogtreecommitdiff
path: root/src/vim.h
diff options
context:
space:
mode:
authorYegappan Lakshmanan <yegappan@yahoo.com>2023-02-21 14:27:41 +0000
committerBram Moolenaar <Bram@vim.org>2023-02-21 14:27:41 +0000
commita23a11b5bf03454b71fdb5deac0d5f641e222160 (patch)
tree5ce9eb5b9668eb891072ee7e03823b1c68214656 /src/vim.h
parentd950984489e50b12d87c85f0cce1d672c880aa23 (diff)
downloadvim-git-a23a11b5bf03454b71fdb5deac0d5f641e222160.tar.gz
patch 9.0.1336: functions without arguments are not always declared properlyv9.0.1336
Problem: Functions without arguments are not always declared properly. Solution: Use "(void)" instead of "()". (Yegappan Lakshmanan, closes #12031)
Diffstat (limited to 'src/vim.h')
-rw-r--r--src/vim.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/vim.h b/src/vim.h
index db38da2e8..d1ec26c50 100644
--- a/src/vim.h
+++ b/src/vim.h
@@ -2287,6 +2287,9 @@ typedef enum {
/*
* Type for the callback function that is invoked after an option value is
* changed to validate and apply the new value.
+ *
+ * Returns NULL if the option value is valid is successfully applied.
+ * Otherwise returns an error message.
*/
typedef char *(*opt_did_set_cb_T)(optset_T *args);