1
0
forked from aniani/vim

updated for version 7.0066

This commit is contained in:
Bram Moolenaar
2005-04-15 21:00:38 +00:00
parent 4499d2ee58
commit 402d2fea70
89 changed files with 6389 additions and 928 deletions

View File

@@ -2333,15 +2333,17 @@ findtag_end:
}
static garray_T tag_fnames = GA_EMPTY;
static void found_tagfile_cb __ARGS((char_u *fname));
static void found_tagfile_cb __ARGS((char_u *fname, void *cookie));
/*
* Callback function for finding all "tags" and "tags-??" files in
* 'runtimepath' doc directories.
*/
/*ARGSUSED*/
static void
found_tagfile_cb(fname)
found_tagfile_cb(fname, cookie)
char_u *fname;
void *cookie;
{
if (ga_grow(&tag_fnames, 1) == OK)
((char_u **)(tag_fnames.ga_data))[tag_fnames.ga_len++] =
@@ -2390,7 +2392,7 @@ get_tagfname(first, buf)
#else
"doc/tags"
#endif
, TRUE, found_tagfile_cb);
, TRUE, found_tagfile_cb, NULL);
hf_idx = 0;
}
else if (*curbuf->b_p_tags != NUL)