diff options
author | Bram Moolenaar <Bram@vim.org> | 2022-04-15 13:53:33 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2022-04-15 13:53:33 +0100 |
commit | 31e5c60a682840959cae6273ccadd9aae48c928d (patch) | |
tree | a72168baa32f1899937f3937a41b0832eac66b8f /src/if_tcl.c | |
parent | 5dc294a7b63ed0e508dd360bc4d98173f1a1aeec (diff) | |
download | vim-git-31e5c60a682840959cae6273ccadd9aae48c928d.tar.gz |
patch 8.2.4753: error from setting an option is silently ignoredv8.2.4753
Problem: Error from setting an option is silently ignored.
Solution: Handle option value errors better. Fix uses of N_().
Diffstat (limited to 'src/if_tcl.c')
-rw-r--r-- | src/if_tcl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/if_tcl.c b/src/if_tcl.c index f66bfd386..8a6af8db6 100644 --- a/src/if_tcl.c +++ b/src/if_tcl.c @@ -1359,7 +1359,7 @@ tclsetoption( sval = (char_u *)Tcl_GetStringFromObj(objv[objn], NULL); if (err == TCL_OK) { - set_option_value(option, lval, sval, OPT_LOCAL); + set_option_value_give_err(option, lval, sval, OPT_LOCAL); err = vimerror(interp); } } |