aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/if_cscope.c
diff options
context:
space:
mode:
authorFelipe Oliveira Carvalho <felipekde@gmail.com>2015-04-22 19:12:26 -0300
committerFelipe Oliveira Carvalho <felipekde@gmail.com>2015-04-24 20:37:13 -0300
commit93bf201119f68b0723ee3f240afa48134cc41399 (patch)
treee314c40921aa19141cc68b6f6af3e23fa2ca2ef8 /src/nvim/if_cscope.c
parentd350d12a00518aa0d9e3a1d49c6815c3398d882f (diff)
downloadrneovim-93bf201119f68b0723ee3f240afa48134cc41399.tar.gz
rneovim-93bf201119f68b0723ee3f240afa48134cc41399.tar.bz2
rneovim-93bf201119f68b0723ee3f240afa48134cc41399.zip
Replace vim_iswhite with ascii_iswhite() defined in ascii.h
Diffstat (limited to 'src/nvim/if_cscope.c')
-rw-r--r--src/nvim/if_cscope.c2
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);