patch 7.4.828
Problem:    Crash when using "syn keyword x c". (Dominique Pelle)
Solution:   Initialize the keyword tabble. (Raymond Ko, PR 397)
diff --git a/src/syntax.c b/src/syntax.c
index c28a24c..a16715a 100644
--- a/src/syntax.c
+++ b/src/syntax.c
@@ -6314,6 +6314,8 @@
     {
 	curwin->w_s = (synblock_T *)alloc(sizeof(synblock_T));
 	memset(curwin->w_s, 0, sizeof(synblock_T));
+	hash_init(&curwin->w_s->b_keywtab);
+	hash_init(&curwin->w_s->b_keywtab_ic);
 #ifdef FEAT_SPELL
 	/* TODO: keep the spell checking as it was. */
 	curwin->w_p_spell = FALSE;	/* No spell checking */