aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/syntax.c
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2016-02-11 09:32:53 -0500
committerJustin M. Keyes <justinkz@gmail.com>2016-02-11 09:32:53 -0500
commit8ba32e219f3a05404f8a8b5d3400a6c556ed9d96 (patch)
treef5c8f03deb6e4cc899c05c46deb2c2ee4929ab8e /src/nvim/syntax.c
parentadb73b60256048cf36a53d6ff714ca9e7c6134bd (diff)
parentd115b58cdc66ce3734b928eb310c064d677e8b7d (diff)
downloadrneovim-8ba32e219f3a05404f8a8b5d3400a6c556ed9d96.tar.gz
rneovim-8ba32e219f3a05404f8a8b5d3400a6c556ed9d96.tar.bz2
rneovim-8ba32e219f3a05404f8a8b5d3400a6c556ed9d96.zip
Merge pull request #4235 from watiko/vim-7.4.828
vim-patch:7.4.828
Diffstat (limited to 'src/nvim/syntax.c')
-rw-r--r--src/nvim/syntax.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/nvim/syntax.c b/src/nvim/syntax.c
index 821411ec7b..baf5d4784d 100644
--- a/src/nvim/syntax.c
+++ b/src/nvim/syntax.c
@@ -5406,8 +5406,10 @@ void ex_ownsyntax(exarg_T *eap)
if (curwin->w_s == &curwin->w_buffer->b_s) {
curwin->w_s = xmalloc(sizeof(synblock_T));
memset(curwin->w_s, 0, sizeof(synblock_T));
- // TODO: Keep the spell checking as it was.
- curwin->w_p_spell = FALSE; /* No spell checking */
+ hash_init(&curwin->w_s->b_keywtab);
+ hash_init(&curwin->w_s->b_keywtab_ic);
+ // TODO: Keep the spell checking as it was. NOLINT(readability/todo)
+ curwin->w_p_spell = false; // No spell checking
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);