summaryrefslogtreecommitdiff
path: root/src/tag.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2018-09-30 21:43:26 +0200
committerBram Moolenaar <Bram@vim.org>2018-09-30 21:43:26 +0200
commit6dff58f15cede9139b2fcfc64c9064326ea3d3b0 (patch)
treef2326055f5fe8bb5948374155f11bd220c1d9dc7 /src/tag.c
parentf45d747ebf920940b041f5c75c2bfdffb6b670ae (diff)
downloadvim-git-6dff58f15cede9139b2fcfc64c9064326ea3d3b0.tar.gz
patch 8.1.0443: unnecessary static function prototypesv8.1.0443
Problem: Unnecessary static function prototypes. Solution: Remove unnecessary prototypes.
Diffstat (limited to 'src/tag.c')
-rw-r--r--src/tag.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/tag.c b/src/tag.c
index f0c92f5b2..3765fe565 100644
--- a/src/tag.c
+++ b/src/tag.c
@@ -1155,8 +1155,6 @@ do_tags(exarg_T *eap UNUSED)
#endif
#ifdef FEAT_TAG_BINS
-static int tag_strnicmp(char_u *s1, char_u *s2, size_t len);
-
/*
* Compare two strings, for length "len", ignoring case the ASCII way.
* return 0 for match, < 0 for smaller, > 0 for bigger
@@ -1194,8 +1192,6 @@ typedef struct
regmatch_T regmatch; /* regexp program, may be NULL */
} pat_T;
-static void prepare_pats(pat_T *pats, int has_re);
-
/*
* Extract info from the tag search pattern "pats->pat".
*/
@@ -3878,8 +3874,6 @@ expand_tags(
#endif
#if defined(FEAT_EVAL) || defined(PROTO)
-static int add_tag_field(dict_T *dict, char *field_name, char_u *start, char_u *end);
-
/*
* Add a tag field to the dictionary "dict".
* Return OK or FAIL.