diff src/proto/optionstr.pro @ 31259:a7dba627a21b v9.0.0963

patch 9.0.0963: function name does not match autocmd event name Commit: https://github.com/vim/vim/commit/269aa2b29ac3e4c0083d929e2477c95e7bd1177a Author: zeertzjq <zeertzjq@outlook.com> Date: Mon Nov 28 11:36:50 2022 +0000 patch 9.0.0963: function name does not match autocmd event name Problem: Function name does not match autocmd event name. Solution: Rename "optionsset" to "optionset". (closes https://github.com/vim/vim/issues/11630)
author Bram Moolenaar <Bram@vim.org>
date Mon, 28 Nov 2022 12:45:04 +0100
parents d61007cc39b3
children db72745d328c
line wrap: on
line diff
--- a/src/proto/optionstr.pro
+++ b/src/proto/optionstr.pro
@@ -1,6 +1,6 @@
 /* optionstr.c */
 void didset_string_options(void);
-void trigger_optionsset_string(int opt_idx, int opt_flags, char_u *oldval, char_u *oldval_l, char_u *oldval_g, char_u *newval);
+void trigger_optionset_string(int opt_idx, int opt_flags, char_u *oldval, char_u *oldval_l, char_u *oldval_g, char_u *newval);
 void check_buf_options(buf_T *buf);
 void free_string_option(char_u *p);
 void clear_string_option(char_u **pp);