0
0
mirror of https://github.com/vim/vim.git synced 2025-09-24 03:44:06 -04:00

patch 9.0.1307: setting 'formatoptions' with :let doesn't check for errors

Problem:    Setting 'formatoptions' with :let doesn't check for errors.
Solution:   Pass "errbuf" to set_string_option(). (Yegappan Lakshmanan,
            closes #11974, closes #11972)
This commit is contained in:
Yegappan Lakshmanan
2023-02-13 16:10:04 +00:00
committed by Bram Moolenaar
parent 5ceb8157bc
commit 32ff96ef01
5 changed files with 51 additions and 5 deletions

View File

@@ -487,7 +487,8 @@ set_string_option_direct_in_buf(
set_string_option(
int opt_idx,
char_u *value,
int opt_flags) // OPT_LOCAL and/or OPT_GLOBAL
int opt_flags, // OPT_LOCAL and/or OPT_GLOBAL
char *errbuf)
{
char_u *s;
char_u **varp;
@@ -540,7 +541,7 @@ set_string_option(
saved_newval = vim_strsave(s);
}
#endif
if ((errmsg = did_set_string_option(opt_idx, varp, oldval, NULL,
if ((errmsg = did_set_string_option(opt_idx, varp, oldval, errbuf,
opt_flags, &value_checked)) == NULL)
did_set_option(opt_idx, opt_flags, TRUE, value_checked);