aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/optionstr.c
diff options
context:
space:
mode:
authorzeertzjq <zeertzjq@outlook.com>2024-10-24 06:04:13 +0800
committerzeertzjq <zeertzjq@outlook.com>2024-10-24 06:56:11 +0800
commit6d2cf5ad3112d12b4b55df9df1e0921086b54fec (patch)
treefa99649f0fcd0ce79dd89fc47129037f402d8a13 /src/nvim/optionstr.c
parent230b0c7f021a57647a658edce27fe115343f083f (diff)
downloadrneovim-6d2cf5ad3112d12b4b55df9df1e0921086b54fec.tar.gz
rneovim-6d2cf5ad3112d12b4b55df9df1e0921086b54fec.tar.bz2
rneovim-6d2cf5ad3112d12b4b55df9df1e0921086b54fec.zip
vim-patch:9.1.0802: tests: no error check when setting global 'fdm' to empty value
Problem: tests: no error check when setting global 'fdm' to empty value Solution: Also check global 'fdm' value for being empty (Milly). closes: vim/vim#15916 https://github.com/vim/vim/commit/142cad1f88d1d3aa34b6050151e620b66185112e Co-authored-by: Milly <milly.ca@gmail.com>
Diffstat (limited to 'src/nvim/optionstr.c')
-rw-r--r--src/nvim/optionstr.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/nvim/optionstr.c b/src/nvim/optionstr.c
index b560275de7..c801ec0a26 100644
--- a/src/nvim/optionstr.c
+++ b/src/nvim/optionstr.c
@@ -1448,8 +1448,7 @@ const char *did_set_foldmethod(optset_T *args)
{
win_T *win = (win_T *)args->os_win;
char **varp = (char **)args->os_varp;
- if (check_opt_strings(*varp, p_fdm_values, false) != OK
- || *win->w_p_fdm == NUL) {
+ if (check_opt_strings(*varp, p_fdm_values, false) != OK || **varp == NUL) {
return e_invarg;
}
foldUpdateAll(win);