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:
@@ -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 */
|
||||
|
Reference in New Issue
Block a user