diff options
author | Bram Moolenaar <Bram@vim.org> | 2019-06-20 03:45:36 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2019-06-20 03:45:36 +0200 |
commit | 75a1a9415b9c207de5a29b25c0d1949c6c9c5c61 (patch) | |
tree | 470a0887aed4e52e342edbca555e0bec1b85af99 /src/proto/popupwin.pro | |
parent | a3fce62c911c204ae144b55018f6dc9295088850 (diff) | |
download | vim-git-75a1a9415b9c207de5a29b25c0d1949c6c9c5c61.tar.gz |
patch 8.1.1575: callbacks may be garbage collectedv8.1.1575
Problem: Callbacks may be garbage collected.
Solution: Set reference in callbacks. (Ozaki Kiichi, closes #4564)
Diffstat (limited to 'src/proto/popupwin.pro')
-rw-r--r-- | src/proto/popupwin.pro | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/proto/popupwin.pro b/src/proto/popupwin.pro index 6c5ea4675..2f669468f 100644 --- a/src/proto/popupwin.pro +++ b/src/proto/popupwin.pro @@ -31,4 +31,5 @@ int popup_do_filter(int c); void popup_check_cursor_pos(void); void may_update_popup_mask(int type); void update_popups(void (*win_update)(win_T *wp)); +int set_ref_in_popups(int copyID); /* vim: set ft=c : */ |