diff options
author | Bram Moolenaar <Bram@vim.org> | 2018-09-30 21:43:26 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2018-09-30 21:43:26 +0200 |
commit | 6dff58f15cede9139b2fcfc64c9064326ea3d3b0 (patch) | |
tree | f2326055f5fe8bb5948374155f11bd220c1d9dc7 /src/search.c | |
parent | f45d747ebf920940b041f5c75c2bfdffb6b670ae (diff) | |
download | vim-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/search.c')
-rw-r--r-- | src/search.c | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/src/search.c b/src/search.c index a12a1d33c..dff532d8f 100644 --- a/src/search.c +++ b/src/search.c @@ -16,16 +16,9 @@ static void set_vv_searchforward(void); static int first_submatch(regmmatch_T *rp); #endif -static int check_prevcol(char_u *linep, int col, int ch, int *prevcol); -static int inmacro(char_u *, char_u *); static int check_linecomment(char_u *line); static int cls(void); static int skip_chars(int, int); -#ifdef FEAT_TEXTOBJ -static void back_in_line(void); -static void find_first_blank(pos_T *); -static void findsent_forward(long count, int at_start_sent); -#endif #ifdef FEAT_FIND_ID static void show_pat_in_path(char_u *, int, int, int, FILE *, linenr_T *, long); @@ -1835,8 +1828,6 @@ check_prevcol( return (col >= 0 && linep[col] == ch) ? TRUE : FALSE; } -static int find_rawstring_end(char_u *linep, pos_T *startpos, pos_T *endpos); - /* * Raw string start is found at linep[startpos.col - 1]. * Return TRUE if the matching end can be found between startpos and endpos. @@ -3866,8 +3857,6 @@ current_block( return OK; } -static int in_html_tag(int); - /* * Return TRUE if the cursor is on a "<aaa>" tag. Ignore "<aaa/>". * When "end_tag" is TRUE return TRUE if the cursor is on "</aaa>". @@ -4326,9 +4315,6 @@ extend: return OK; } -static int find_next_quote(char_u *top_ptr, int col, int quotechar, char_u *escape); -static int find_prev_quote(char_u *line, int col_start, int quotechar, char_u *escape); - /* * Search quote char from string line[col]. * Quote character escaped by one of the characters in "escape" is not counted |