summaryrefslogtreecommitdiff
path: root/src/syntax.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2020-09-13 22:37:34 +0200
committerBram Moolenaar <Bram@vim.org>2020-09-13 22:37:34 +0200
commitd1f76afaf963be706697279ab0570ffcb8a1f2fc (patch)
tree532a79e2835b838c2353f624e1ab1dba311c2f5d /src/syntax.c
parent4d170af0a9379da64d67dc3fa7cc7297956c6f52 (diff)
downloadvim-git-d1f76afaf963be706697279ab0570ffcb8a1f2fc.tar.gz
patch 8.2.1678: crash when using ":set" after ":ownsyntax"v8.2.1678
Problem: Crash when using ":set" after ":ownsyntax". Solution: Make sure 'spelloptions' is not NULL. (closes #6950)
Diffstat (limited to 'src/syntax.c')
-rw-r--r--src/syntax.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/syntax.c b/src/syntax.c
index ccdb2030c..6025889b2 100644
--- a/src/syntax.c
+++ b/src/syntax.c
@@ -6316,9 +6316,11 @@ ex_ownsyntax(exarg_T *eap)
#ifdef FEAT_SPELL
// TODO: keep the spell checking as it was.
curwin->w_p_spell = FALSE; // No spell checking
+ // make sure option values are "empty_option" instead of NULL
clear_string_option(&curwin->w_s->b_p_spc);
clear_string_option(&curwin->w_s->b_p_spf);
clear_string_option(&curwin->w_s->b_p_spl);
+ clear_string_option(&curwin->w_s->b_p_spo);
#endif
clear_string_option(&curwin->w_s->b_syn_isk);
}