# HG changeset patch # User Bram Moolenaar # Date 1562011206 -7200 # Node ID 6d01f93a5f12fa21d1e042bbf0cbc9f6ee27edba # Parent 7000ebc871dd761a58618a3170fb4fcf8d673129 patch 8.1.1613: popup window test fails with Athena and Motif commit https://github.com/vim/vim/commit/a83e70000f106a1e1e0f86e8e362ec94c0df074c Author: Bram Moolenaar Date: Mon Jul 1 21:47:35 2019 +0200 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 --- 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 --- a/src/version.c +++ b/src/version.c @@ -778,6 +778,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 1613, +/**/ 1612, /**/ 1611,