summaryrefslogtreecommitdiff
path: root/src/window.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2019-06-16 20:09:10 +0200
committerBram Moolenaar <Bram@vim.org>2019-06-16 20:09:10 +0200
commiteb2310d47d83764a61d63cd5c2788870d7f6eddf (patch)
treeedbc9c2ba71757b15fd06e4b77f17b0c43e96514 /src/window.c
parenta730e55cc2d3045a79a340a5af1ad4a749058a32 (diff)
downloadvim-git-eb2310d47d83764a61d63cd5c2788870d7f6eddf.tar.gz
patch 8.1.1559: popup window title property not implemented yetv8.1.1559
Problem: Popup window title property not implemented yet. Solution: Implement the title property.
Diffstat (limited to 'src/window.c')
-rw-r--r--src/window.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/window.c b/src/window.c
index ee616ee96..7f8bb784f 100644
--- a/src/window.c
+++ b/src/window.c
@@ -4857,6 +4857,7 @@ win_free(
free_callback(&wp->w_filter_cb);
for (i = 0; i < 4; ++i)
VIM_CLEAR(wp->w_border_highlight[i]);
+ vim_free(wp->w_popup_title);
#endif
#ifdef FEAT_SYN_HL