comparison src/vim.h @ 32009:4545f58c8490 v9.0.1336

patch 9.0.1336: functions without arguments are not always declared properly Commit: https://github.com/vim/vim/commit/a23a11b5bf03454b71fdb5deac0d5f641e222160 Author: Yegappan Lakshmanan <yegappan@yahoo.com> Date: Tue Feb 21 14:27:41 2023 +0000 patch 9.0.1336: functions without arguments are not always declared properly Problem: Functions without arguments are not always declared properly. Solution: Use "(void)" instead of "()". (Yegappan Lakshmanan, closes https://github.com/vim/vim/issues/12031)
author Bram Moolenaar <Bram@vim.org>
date Tue, 21 Feb 2023 15:30:08 +0100
parents ca6bc7c04163
children ec05de98b0f7
comparison
equal deleted inserted replaced
32008:6b51ad8c5e8e 32009:4545f58c8490
2285 } funcerror_T; 2285 } funcerror_T;
2286 2286
2287 /* 2287 /*
2288 * Type for the callback function that is invoked after an option value is 2288 * Type for the callback function that is invoked after an option value is
2289 * changed to validate and apply the new value. 2289 * changed to validate and apply the new value.
2290 *
2291 * Returns NULL if the option value is valid is successfully applied.
2292 * Otherwise returns an error message.
2290 */ 2293 */
2291 typedef char *(*opt_did_set_cb_T)(optset_T *args); 2294 typedef char *(*opt_did_set_cb_T)(optset_T *args);
2292 2295
2293 // Flags for assignment functions. 2296 // Flags for assignment functions.
2294 #define ASSIGN_VAR 0 // ":var" (nothing special) 2297 #define ASSIGN_VAR 0 // ":var" (nothing special)