diff options
Diffstat (limited to 'src/nvim/tag.c')
-rw-r--r-- | src/nvim/tag.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/tag.c b/src/nvim/tag.c index b9abf3552c..29d3bf27e1 100644 --- a/src/nvim/tag.c +++ b/src/nvim/tag.c @@ -2820,7 +2820,7 @@ int get_tags(list_T *list, char_u *pat) else if (STRNCMP(p, "file:", 5) == 0) /* skip "file:" (static tag) */ p += 4; - else if (!vim_iswhite(*p)) { + else if (!ascii_iswhite(*p)) { char_u *s, *n; int len; |