summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2007-02-04 01:48:10 +0000
committerBram Moolenaar <Bram@vim.org>2007-02-04 01:48:10 +0000
commit86ea76404e0f1d41aa14dd7b4302bed4f503ef58 (patch)
tree9b432d2d5a1d0b1f5bfa6e7ebfc3143708028627
parent0739a1e671eb655db8b04d280be1d6d3f67febac (diff)
updated for version 7.0-190v7.0.190
-rw-r--r--src/syntax.c2
-rw-r--r--src/version.c2
2 files changed, 3 insertions, 1 deletions
diff --git a/src/syntax.c b/src/syntax.c
index d5047c7c6c..50e112fb66 100644
--- 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
index 4459e5fce4..9e3cff6385 100644
--- 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,