summaryrefslogtreecommitdiff
path: root/src/window.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2019-06-01 22:15:29 +0200
committerBram Moolenaar <Bram@vim.org>2019-06-01 22:15:29 +0200
commit790498b509443f96f39431d2bc87b777efbe250f (patch)
tree825116fda3eb6724ae59a3c570cbc680a3f9bfe0 /src/window.c
parent3bfd04e672ea47e371595e50a92ddfb2223f6e3d (diff)
downloadvim-git-790498b509443f96f39431d2bc87b777efbe250f.tar.gz
patch 8.1.1445: popup window border highlight not implemented yetv8.1.1445
Problem: Popup window border highlight not implemented yet. Solution: Implement the "borderhighlight" option.
Diffstat (limited to 'src/window.c')
-rw-r--r--src/window.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/window.c b/src/window.c
index b4ab11be3..e15b31191 100644
--- a/src/window.c
+++ b/src/window.c
@@ -4846,6 +4846,8 @@ win_free(
#endif
#ifdef FEAT_TEXT_PROP
free_callback(&wp->w_filter_cb);
+ for (i = 0; i < 4; ++i)
+ VIM_CLEAR(wp->w_border_highlight[i]);
#endif
#ifdef FEAT_SYN_HL