changeset 17227:6d01f93a5f12 v8.1.1613

patch 8.1.1613: popup window test fails with Athena and Motif commit https://github.com/vim/vim/commit/a83e70000f106a1e1e0f86e8e362ec94c0df074c Author: Bram Moolenaar <Bram@vim.org> 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.
author Bram Moolenaar <Bram@vim.org>
date Mon, 01 Jul 2019 22:00:06 +0200
parents 7000ebc871dd
children da9a9c4265a1
files src/syntax.c src/version.c
diffstat 2 files changed, 4 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- 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)
--- 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,