mirror of
https://github.com/vim/vim.git
synced 2025-09-24 03:44:06 -04:00
updated for version 7.4.524
Problem: When using ":ownsyntax" spell checking is messed up. (Issue 78) Solution: Use the window-local option values. (Christian Brabandt)
This commit is contained in:
@@ -6304,11 +6304,10 @@ ex_ownsyntax(eap)
|
||||
curwin->w_s = (synblock_T *)alloc(sizeof(synblock_T));
|
||||
memset(curwin->w_s, 0, sizeof(synblock_T));
|
||||
#ifdef FEAT_SPELL
|
||||
/* TODO: keep the spell checking as it was. */
|
||||
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);
|
||||
vim_regfree(curwin->w_s->b_cap_prog);
|
||||
curwin->w_s->b_cap_prog = NULL;
|
||||
clear_string_option(&curwin->w_s->b_p_spl);
|
||||
#endif
|
||||
}
|
||||
|
Reference in New Issue
Block a user