summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2012-07-19 17:39:07 +0200
committerBram Moolenaar <Bram@vim.org>2012-07-19 17:39:07 +0200
commit049d8e79cf49a38c1243f4ec33e48a9bd89b5e4c (patch)
tree0ae7ecce6c6c58349966d75488324c5ca461610b
parent94c465c53d77d2c6eda829c744f27f093f0e0813 (diff)
updated for version 7.3.607v7.3.607
Problem: With an 8 color terminal the selected menu item is black on black, because darkGrey as bg is the same as black. Solution: Swap fg and bg colors. (James McCoy)
-rw-r--r--src/syntax.c4
-rw-r--r--src/version.c2
2 files changed, 4 insertions, 2 deletions
diff --git a/src/syntax.c b/src/syntax.c
index b2b610277e..59a2691a2b 100644
--- a/src/syntax.c
+++ b/src/syntax.c
@@ -6653,8 +6653,8 @@ static char *(highlight_init_dark[]) =
"PmenuThumb ctermbg=White guibg=White"),
CENT("Pmenu ctermbg=Magenta ctermfg=Black",
"Pmenu ctermbg=Magenta ctermfg=Black guibg=Magenta"),
- CENT("PmenuSel ctermbg=DarkGrey ctermfg=Black",
- "PmenuSel ctermbg=DarkGrey ctermfg=Black guibg=DarkGrey"),
+ CENT("PmenuSel ctermbg=Black ctermfg=DarkGrey",
+ "PmenuSel ctermbg=Black ctermfg=DarkGrey guibg=DarkGrey"),
#endif
CENT("Title term=bold ctermfg=LightMagenta",
"Title term=bold ctermfg=LightMagenta gui=bold guifg=Magenta"),
diff --git a/src/version.c b/src/version.c
index cd0d2d7dff..5dd3776c45 100644
--- a/src/version.c
+++ b/src/version.c
@@ -715,6 +715,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 607,
+/**/
606,
/**/
605,