changeset 335:53543f031fbc

updated for version 7.0087
author vimboss
date Fri, 17 Jun 2005 21:55:00 +0000
parents a1270013cb34
children 2d8c2622e1fa
files src/mbyte.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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 */