]> granicus.if.org Git - vim/commitdiff
patch 8.1.0133: tagfiles() can have duplicate entries v8.1.0133
authorBram Moolenaar <Bram@vim.org>
Sat, 30 Jun 2018 20:40:42 +0000 (22:40 +0200)
committerBram Moolenaar <Bram@vim.org>
Sat, 30 Jun 2018 20:40:42 +0000 (22:40 +0200)
Problem:    tagfiles() can have duplicate entries.
Solution:   Simplify the filename to make checking for duplicates work better.
            Add a test. (Dominique Pelle, closes #2979)

src/tag.c
src/testdir/test_taglist.vim
src/version.c

index 92ed2a7c4ce63e5c6df2ee69f3785747589a63ed..b23cb5aabbb769e3ae244e138dc96e6062e8ae70 100644 (file)
--- a/src/tag.c
+++ b/src/tag.c
@@ -2595,7 +2595,6 @@ findtag_end:
 }
 
 static garray_T tag_fnames = GA_EMPTY;
-static void found_tagfile_cb(char_u *fname, void *cookie);
 
 /*
  * Callback function for finding all "tags" and "tags-??" files in
@@ -2605,8 +2604,15 @@ static void found_tagfile_cb(char_u *fname, void *cookie);
 found_tagfile_cb(char_u *fname, void *cookie UNUSED)
 {
     if (ga_grow(&tag_fnames, 1) == OK)
-       ((char_u **)(tag_fnames.ga_data))[tag_fnames.ga_len++] =
-                                                          vim_strsave(fname);
+    {
+       char_u  *tag_fname = vim_strsave(fname);
+
+#ifdef BACKSLASH_IN_FILENAME
+       slash_adjust(tag_fname);
+#endif
+       simplify_filename(tag_fname);
+       ((char_u **)(tag_fnames.ga_data))[tag_fnames.ga_len++] = tag_fname;
+    }
 }
 
 #if defined(EXITFREE) || defined(PROTO)
@@ -2638,6 +2644,7 @@ get_tagfname(
 {
     char_u             *fname = NULL;
     char_u             *r_ptr;
+    int                        i;
 
     if (first)
        vim_memset(tnp, 0, sizeof(tagname_T));
@@ -2679,6 +2686,14 @@ get_tagfname(
            ++tnp->tn_hf_idx;
            STRCPY(buf, p_hf);
            STRCPY(gettail(buf), "tags");
+#ifdef BACKSLASH_IN_FILENAME
+           slash_adjust(buf);
+#endif
+           simplify_filename(buf);
+
+           for (i = 0; i < tag_fnames.ga_len; ++i)
+               if (STRCMP(buf, ((char_u **)(tag_fnames.ga_data))[i]) == 0)
+                   return FAIL; // avoid duplicate file names
        }
        else
            vim_strncpy(buf, ((char_u **)(tag_fnames.ga_data))[
index 3ad2025915ab627dd0d9cb9688555a4f8cbe576f..0a9350adc700df35b58b388cb1996ee44832ac89 100644 (file)
@@ -1,4 +1,4 @@
-" test 'taglist' function and :tags command
+" test taglist(), tagfiles() functions and :tags command
 
 func Test_taglist()
   call writefile([
@@ -61,3 +61,26 @@ func Test_tags_too_long()
   call assert_fails('tag ' . repeat('x', 1020), 'E426')
   tags
 endfunc
+
+func Test_tagfiles()
+  call assert_equal([], tagfiles())
+
+  call writefile(["FFoo\tXfoo\t1"], 'Xtags1')
+  call writefile(["FBar\tXbar\t1"], 'Xtags2')
+  set tags=Xtags1,Xtags2
+  call assert_equal(['Xtags1', 'Xtags2'], tagfiles())
+
+  help
+  let tf = tagfiles()
+  call assert_equal(1, len(tf))
+  call assert_equal(fnamemodify(expand('$VIMRUNTIME/doc/tags'), ':p:gs?\\?/?'),
+       \           fnamemodify(tf[0], ':p:gs?\\?/?'))
+  helpclose
+  call assert_equal(['Xtags1', 'Xtags2'], tagfiles())
+  set tags&
+  call assert_equal([], tagfiles())
+
+  call delete('Xtags1')
+  call delete('Xtags2')
+  bd
+endfunc
index 572b8f184cdd68e95c83b39f76a2affc9a539efe..c724159d1bb3241a0e76040e1ff1d0382eae64e4 100644 (file)
@@ -789,6 +789,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    133,
 /**/
     132,
 /**/