summaryrefslogtreecommitdiff
path: root/src/vim.h
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2020-02-28 22:20:10 +0100
committerBram Moolenaar <Bram@vim.org>2020-02-28 22:20:10 +0100
commite52e0c89d1a6305beca3c01f89a4892dcb43bc71 (patch)
treed54216cc94ae0eb3c8a737b3298be99b9360297c /src/vim.h
parent80ae880f5fed8022c69d05dd1efee49259929cb5 (diff)
downloadvim-git-e52e0c89d1a6305beca3c01f89a4892dcb43bc71.tar.gz
patch 8.2.0328: no redraw when leaving term-normal mode in popup terminalv8.2.0328
Problem: No redraw when leaving terminal-normal mode in a terminal popup window. Solution: Redraw the popup window. (closes #5708)
Diffstat (limited to 'src/vim.h')
-rw-r--r--src/vim.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/vim.h b/src/vim.h
index 658a2f129..f9866667b 100644
--- a/src/vim.h
+++ b/src/vim.h
@@ -640,12 +640,6 @@ extern int (*dyn_libintl_wputenv)(const wchar_t *envstring);
#define POPUP_HANDLED_4 0x08 // used by may_update_popup_mask()
#define POPUP_HANDLED_5 0x10 // used by update_popups()
-#ifdef FEAT_PROP_POPUP
-# define WIN_IS_POPUP(wp) ((wp)->w_popup_flags != 0)
-#else
-# define WIN_IS_POPUP(wp) 0
-#endif
-
/*
* Terminal highlighting attribute bits.
* Attributes above HL_ALL are used for syntax highlighting.