diff options
Diffstat (limited to 'src/nvim/if_cscope.c')
-rw-r--r-- | src/nvim/if_cscope.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/if_cscope.c b/src/nvim/if_cscope.c index 48d8522865..e25ab89027 100644 --- a/src/nvim/if_cscope.c +++ b/src/nvim/if_cscope.c @@ -687,7 +687,7 @@ static char *cs_create_cmd(char *csoption, char *pattern) * they may want to use the leading white space. */ pat = pattern; if (search != 4 && search != 6) - while (vim_iswhite(*pat)) + while (ascii_iswhite(*pat)) ++pat; cmd = xmalloc(strlen(pat) + 2); |