1
0
forked from aniani/vim

updated for version 7.2-116

This commit is contained in:
Bram Moolenaar
2009-02-21 21:58:24 +00:00
parent 926e815779
commit 086fad3a27
2 changed files with 11 additions and 0 deletions

View File

@@ -2542,6 +2542,15 @@ free_tag_stuff()
{
ga_clear_strings(&tag_fnames);
do_tag(NULL, DT_FREE, 0, 0, 0);
tag_freematch();
# if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
if (ptag_entry.tagname)
{
vim_free(ptag_entry.tagname);
ptag_entry.tagname = NULL;
}
# endif
}
#endif