summaryrefslogtreecommitdiff
path: root/src/syntax.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2006-04-20 22:17:20 +0000
committerBram Moolenaar <Bram@vim.org>2006-04-20 22:17:20 +0000
commitfc1421eb53b17aa58b01a9c07ba2007eb4a1aa4f (patch)
treeaeddd441dc8dc7222c5c1acd2b0841712e833810 /src/syntax.c
parent8424a624ce1c38716deabd47f4da23f1e81614bd (diff)
downloadvim-git-fc1421eb53b17aa58b01a9c07ba2007eb4a1aa4f.tar.gz
updated for version 7.0e04v7.0e04
Diffstat (limited to 'src/syntax.c')
-rw-r--r--src/syntax.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/syntax.c b/src/syntax.c
index dfeda5e92..714de44d2 100644
--- a/src/syntax.c
+++ b/src/syntax.c
@@ -4528,7 +4528,7 @@ syn_cmd_keyword(eap, syncing)
break;
if (p[1] == NUL)
{
- EMSG2(_("E747: Missing ']': %s"), kw);
+ EMSG2(_("E789: Missing ']': %s"), kw);
kw = p + 2; /* skip over the NUL */
break;
}
@@ -6329,9 +6329,9 @@ init_highlight(both, reset)
* depend on the number of colors available. */
if (t_colors > 8)
do_highlight((char_u *)(*p_bg == 'l' ? "Visual ctermbg=LightGrey"
- : "Visual ctermbg=DarkGrey"), reset, TRUE);
+ : "Visual ctermbg=DarkGrey"), FALSE, TRUE);
else
- do_highlight((char_u *)"Visual cterm=reverse", reset, TRUE);
+ do_highlight((char_u *)"Visual cterm=reverse", FALSE, TRUE);
#ifdef FEAT_SYN_HL
/*