# HG changeset patch # User vimboss # Date 1170553690 0 # Node ID a8bcc7553263bb7a12eec8813270ed34242dcdfd # Parent d763e7d7e938d8dd3887b7279b44e3a857285d38 updated for version 7.0-190 diff --git a/src/syntax.c b/src/syntax.c --- a/src/syntax.c +++ b/src/syntax.c @@ -3206,7 +3206,7 @@ syn_cmd_spell(eap, syncing) curbuf->b_syn_spell = SYNSPL_TOP; else if (STRNICMP(arg, "notoplevel", 10) == 0 && next - arg == 10) curbuf->b_syn_spell = SYNSPL_NOTOP; - else if (STRNICMP(arg, "default", 4) == 0 && next - arg == 4) + else if (STRNICMP(arg, "default", 7) == 0 && next - arg == 7) curbuf->b_syn_spell = SYNSPL_DEFAULT; else EMSG2(_("E390: Illegal argument: %s"), arg); diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -667,6 +667,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 190, +/**/ 189, /**/ 188,