aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/quickfix.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/nvim/quickfix.c')
-rw-r--r--src/nvim/quickfix.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/quickfix.c b/src/nvim/quickfix.c
index 7e83132a25..5cf2f4d5a7 100644
--- a/src/nvim/quickfix.c
+++ b/src/nvim/quickfix.c
@@ -1808,7 +1808,7 @@ static void qf_fmt_text(char_u *text, char_u *buf, int bufsize)
if (*p == '\n') {
buf[i] = ' ';
while (*++p != NUL)
- if (!vim_iswhite(*p) && *p != '\n')
+ if (!ascii_iswhite(*p) && *p != '\n')
break;
} else
buf[i] = *p++;