summaryrefslogtreecommitdiffstats
path: root/src/charset.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/charset.c')
-rw-r--r--src/charset.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/charset.c b/src/charset.c
index 18a693547d..2091d233bc 100644
--- a/src/charset.c
+++ b/src/charset.c
@@ -1530,7 +1530,7 @@ skipwhite(char_u *q)
{
char_u *p = q;
- while (vim_iswhite(*p)) /* skip to next non-white */
+ while (VIM_ISWHITE(*p)) /* skip to next non-white */
++p;
return p;
}