diff options
Diffstat (limited to 'src/nvim/search.c')
| -rw-r--r-- | src/nvim/search.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/search.c b/src/nvim/search.c index 906c9a6f47..6195be42ba 100644 --- a/src/nvim/search.c +++ b/src/nvim/search.c @@ -2318,7 +2318,7 @@ pos_T *findmatchlimit(oparg_T *oap, int initc, int flags, int64_t maxtravel) * Return MAXCOL if not, otherwise return the column. * TODO: skip strings. */ -static int check_linecomment(const char_u *line) +int check_linecomment(const char_u *line) { const char_u *p = line; // scan from start // skip Lispish one-line comments |