mirror of
https://github.com/vim/vim.git
synced 2025-09-26 04:04:07 -04:00
patch 8.0.0452: some macros are in lower case
Problem: Some macros are in lower case. Solution: Make a few more macros upper case.
This commit is contained in:
@@ -1530,7 +1530,7 @@ skipwhite(char_u *q)
|
||||
{
|
||||
char_u *p = q;
|
||||
|
||||
while (vim_iswhite(*p)) /* skip to next non-white */
|
||||
while (VIM_ISWHITE(*p)) /* skip to next non-white */
|
||||
++p;
|
||||
return p;
|
||||
}
|
||||
|
Reference in New Issue
Block a user