diff options
Diffstat (limited to 'src/nvim/linematch.c')
-rw-r--r-- | src/nvim/linematch.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/linematch.c b/src/nvim/linematch.c index 2b53fe6bd6..ebedda9b4d 100644 --- a/src/nvim/linematch.c +++ b/src/nvim/linematch.c @@ -30,7 +30,7 @@ static size_t line_len(const char *s) if (end) { return (size_t)(end - s); } - return STRLEN(s); + return strlen(s); } /// Same as matching_chars but ignore whitespace |