summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2009-02-21 21:58:24 +0000
committerBram Moolenaar <Bram@vim.org>2009-02-21 21:58:24 +0000
commit086fad3a270a0ac4ca214454b3d9a0c8643d5f46 (patch)
treef678a372118030881da162fb81bf81656cc82fe3
parent926e8157797be061eb99f4e6b9739804c6d4f0b5 (diff)
downloadvim-git-086fad3a270a0ac4ca214454b3d9a0c8643d5f46.tar.gz
updated for version 7.2-116v7.2.116
-rw-r--r--src/tag.c9
-rw-r--r--src/version.c2
2 files changed, 11 insertions, 0 deletions
diff --git a/src/tag.c b/src/tag.c
index 8c36ec3fb..a98c6cb88 100644
--- a/src/tag.c
+++ b/src/tag.c
@@ -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
diff --git a/src/version.c b/src/version.c
index 7970cf205..86b7fb227 100644
--- a/src/version.c
+++ b/src/version.c
@@ -677,6 +677,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 116,
+/**/
115,
/**/
114,