0
0
mirror of https://github.com/vim/vim.git synced 2025-09-24 03:44:06 -04:00

updated for version 7.0087

This commit is contained in:
Bram Moolenaar
2005-06-17 21:55:00 +00:00
parent 8db7318c2a
commit f7bbbc506e

View File

@@ -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 */