summaryrefslogtreecommitdiffstats
path: root/src/search.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2021-12-12 14:16:39 +0000
committerBram Moolenaar <Bram@vim.org>2021-12-12 14:16:39 +0000
commit6e371ecb27227ff8fedd8561d0f3880a17576848 (patch)
tree29129df4da69f0093ac1b763dffb2be45e84c587 /src/search.c
parent9a4ec5a62632af040c278a189e256043740f5c7f (diff)
patch 8.2.3787: no proper formatting of a C line comment after a statementv8.2.3787
Problem: No proper formatting of a C line comment after a statement. Solution: Find the start of the line comment, insert the comment leader and indent the comment properly.
Diffstat (limited to 'src/search.c')
-rw-r--r--src/search.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/search.c b/src/search.c
index 5c01e4a3ae..c5810ed0e7 100644
--- a/src/search.c
+++ b/src/search.c
@@ -16,7 +16,6 @@
static void set_vv_searchforward(void);
static int first_submatch(regmmatch_T *rp);
#endif
-static int check_linecomment(char_u *line);
#ifdef FEAT_FIND_ID
static void show_pat_in_path(char_u *, int,
int, int, FILE *, linenr_T *, long);
@@ -2717,7 +2716,7 @@ findmatchlimit(
* Return MAXCOL if not, otherwise return the column.
* TODO: skip strings.
*/
- static int
+ int
check_linecomment(char_u *line)
{
char_u *p;