From 6dff58f15cede9139b2fcfc64c9064326ea3d3b0 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Sun, 30 Sep 2018 21:43:26 +0200 Subject: patch 8.1.0443: unnecessary static function prototypes Problem: Unnecessary static function prototypes. Solution: Remove unnecessary prototypes. --- src/search.c | 14 -------------- 1 file changed, 14 deletions(-) (limited to 'src/search.c') 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 "" tag. Ignore "". * When "end_tag" is TRUE return TRUE if the cursor is on "". @@ -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 -- cgit v1.2.1