From a83e70000f106a1e1e0f86e8e362ec94c0df074c Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Mon, 1 Jul 2019 21:47:35 +0200 Subject: [PATCH] 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. --- src/syntax.c | 2 ++ src/version.c | 2 ++ 2 files changed, 4 insertions(+) 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, /**/ -- 2.50.1