From 049d8e79cf49a38c1243f4ec33e48a9bd89b5e4c Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Thu, 19 Jul 2012 17:39:07 +0200 Subject: [PATCH] updated for version 7.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) --- src/syntax.c | 4 ++-- src/version.c | 2 ++ 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/src/syntax.c b/src/syntax.c index b2b610277..59a2691a2 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 cd0d2d7df..5dd3776c4 100644 --- a/src/version.c +++ b/src/version.c @@ -714,6 +714,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 607, /**/ 606, /**/ -- 2.50.1