summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2019-07-01 21:47:35 +0200
committerBram Moolenaar <Bram@vim.org>2019-07-01 21:47:35 +0200
commita83e70000f106a1e1e0f86e8e362ec94c0df074c (patch)
tree79eca2c4a31df9a1dde9c5c7acaf99757a2642db
parent5b8cfedfbd19a71a30c73cf44b0aec3da7fc1a24 (diff)
downloadvim-git-8.1.1613.tar.gz
patch 8.1.1613: popup window test fails with Athena and Motifv8.1.1613
Problem: Popup window test fails with Athena and Motif. Solution: Compute the highlight attribut when the GUI is not active.
-rw-r--r--src/syntax.c2
-rw-r--r--src/version.c2
2 files changed, 4 insertions, 0 deletions
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
@@ -778,6 +778,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 1613,
+/**/
1612,
/**/
1611,