1
0
forked from aniani/vim

updated for version 7.1-283

This commit is contained in:
Bram Moolenaar
2008-03-16 15:04:34 +00:00
parent 0fde290e55
commit cb4cef2206
10 changed files with 26 additions and 21 deletions

View File

@@ -3009,7 +3009,7 @@ modifier_len(cmd)
break;
if (!isalpha(p[j]) && j >= cmdmods[i].minlen
&& (p == cmd || cmdmods[i].has_count))
return j + (p - cmd);
return j + (int)(p - cmd);
}
return 0;
}