We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 61be73b commit 6312256Copy full SHA for 6312256
2 files changed
src/syntax.c
@@ -7795,13 +7795,7 @@ do_highlight(
7795
# if defined(FEAT_GUI) || defined(FEAT_TERMGUICOLORS)
7796
/* In GUI guifg colors are only used when recognized */
7797
i = color_name2handle(arg);
7798
- if (i != INVALCOLOR || STRCMP(arg, "NONE") == 0
7799
-# ifdef FEAT_GUI
7800
- || !(USE_24BIT)
7801
-# else
7802
- || !p_tgc
7803
-# endif
7804
- )
+ if (i != INVALCOLOR || STRCMP(arg, "NONE") == 0 || !USE_24BIT)
7805
{
7806
HL_TABLE()[idx].sg_gui_fg = i;
7807
# endif
src/version.c
@@ -753,6 +753,8 @@ static char *(features[]) =
753
754
static int included_patches[] =
755
{ /* Add new patch number below this line */
756
+/**/
757
+ 1800,
758
/**/
759
1799,
760
0 commit comments