vim-patch:8.0.0755: terminal window does not have colors in the GUI

Problem:    Terminal window does not have colors in the GUI.
Solution:   Lookup the GUI color.
26af85d97b
This commit is contained in:
Jan Edmund Lazo 2019-07-06 08:37:25 -04:00
parent 1b99aa8c53
commit 5dc5db1557
1 changed files with 1 additions and 1 deletions

View File

@ -6829,7 +6829,7 @@ void do_highlight(const char *line, const bool forceit, const bool init)
}
xfree(HL_TABLE()[idx].sg_rgb_fg_name);
if (strcmp(arg, "NONE")) {
if (strcmp(arg, "NONE") != 0) {
HL_TABLE()[idx].sg_rgb_fg_name = (char_u *)xstrdup((char *)arg);
HL_TABLE()[idx].sg_rgb_fg = name_to_color((const char_u *)arg);
} else {