From: Bram Moolenaar Date: Mon, 1 Jul 2019 19:47:35 +0000 (+0200) Subject: patch 8.1.1613: popup window test fails with Athena and Motif X-Git-Tag: v8.1.1613 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=a83e70000f106a1e1e0f86e8e362ec94c0df074c;p=vim patch 8.1.1613: popup window test fails with Athena and Motif Problem: Popup window test fails with Athena and Motif. Solution: Compute the highlight attribut when the GUI is not active. --- diff --git a/src/syntax.c b/src/syntax.c index 4d4234683..9c17a5875 100644 --- a/src/syntax.c +++ b/src/syntax.c @@ -8202,6 +8202,8 @@ do_highlight( { if (gui.in_use && do_colors) gui_new_scrollbar_colors(); + else + set_hl_attr(idx); } # ifdef FEAT_BEVAL_GUI else if (is_tooltip_group) diff --git a/src/version.c b/src/version.c index 7bd232736..2ba2bcae2 100644 --- a/src/version.c +++ b/src/version.c @@ -777,6 +777,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 1613, /**/ 1612, /**/