comparison src/proto/tag.pro @ 26518:13ba00ef7687 v8.2.3788

patch 8.2.3788: lambda for option that is a function may be freed Commit: https://github.com/vim/vim/commit/6ae8fae8696623b527c7fb22567f6a3705b2f0dd Author: Yegappan Lakshmanan <yegappan@yahoo.com> Date: Sun Dec 12 16:26:44 2021 +0000 patch 8.2.3788: lambda for option that is a function may be freed Problem: Lambda for option that is a function may be garbage collected. Solution: Set a reference in the funcref. (Yegappan Lakshmanan, closes #9330)
author Bram Moolenaar <Bram@vim.org>
date Sun, 12 Dec 2021 17:30:04 +0100
parents 8aba638e91eb
children 8b15e4161605
comparison
equal deleted inserted replaced
26517:7dfc4c45f698 26518:13ba00ef7687
1 /* tag.c */ 1 /* tag.c */
2 int set_tagfunc_option(void); 2 int set_tagfunc_option(void);
3 void free_tagfunc_option(void); 3 void free_tagfunc_option(void);
4 int set_ref_in_tagfunc(int copyID);
4 void set_buflocal_tfu_callback(buf_T *buf); 5 void set_buflocal_tfu_callback(buf_T *buf);
5 int do_tag(char_u *tag, int type, int count, int forceit, int verbose); 6 int do_tag(char_u *tag, int type, int count, int forceit, int verbose);
6 void tag_freematch(void); 7 void tag_freematch(void);
7 void do_tags(exarg_T *eap); 8 void do_tags(exarg_T *eap);
8 int find_tags(char_u *pat, int *num_matches, char_u ***matchesp, int flags, int mincount, char_u *buf_ffname); 9 int find_tags(char_u *pat, int *num_matches, char_u ***matchesp, int flags, int mincount, char_u *buf_ffname);