diff options
author | Bram Moolenaar <Bram@vim.org> | 2007-02-04 01:48:10 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2007-02-04 01:48:10 +0000 |
commit | 86ea76404e0f1d41aa14dd7b4302bed4f503ef58 (patch) | |
tree | 9b432d2d5a1d0b1f5bfa6e7ebfc3143708028627 /src/syntax.c | |
parent | 0739a1e671eb655db8b04d280be1d6d3f67febac (diff) | |
download | vim-86ea76404e0f1d41aa14dd7b4302bed4f503ef58.zip |
updated for version 7.0-190
Diffstat (limited to 'src/syntax.c')
-rw-r--r-- | src/syntax.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/syntax.c b/src/syntax.c index d5047c7c6..50e112fb6 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); |