From: Bram Moolenaar Date: Fri, 17 Jun 2005 21:55:00 +0000 (+0000) Subject: updated for version 7.0087 X-Git-Tag: v7.0087~3 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f7bbbc506e1b28fae1edc0a4bb4e4218d1ea623a;p=vim updated for version 7.0087 --- diff --git a/src/mbyte.c b/src/mbyte.c index b309fa70a..b73b095dd 100644 --- a/src/mbyte.c +++ b/src/mbyte.c @@ -1903,7 +1903,7 @@ utf_class(c) /* First quick check for Latin1 characters, use 'iskeyword'. */ if (c < 0x100) { - if (c == ' ' || c == '\t' || c == NUL) + if (c == ' ' || c == '\t' || c == NUL || c == 0xa0) return 0; /* blank */ if (vim_iswordc(c)) return 2; /* word character */