mirror of
https://github.com/vim/vim.git
synced 2025-09-23 03:43:49 -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:
@@ -2005,7 +2005,7 @@ parse_line:
|
||||
#endif
|
||||
if ( fnamencmp(lbuf, tagp.fname, p - lbuf) == 0
|
||||
#ifdef FEAT_TAG_ANYWHITE
|
||||
&& vim_iswhite(tagp.fname[p - lbuf])
|
||||
&& VIM_ISWHITE(tagp.fname[p - lbuf])
|
||||
#else
|
||||
&& tagp.fname[p - lbuf] == TAB
|
||||
#endif
|
||||
@@ -3932,7 +3932,7 @@ get_tags(list_T *list, char_u *pat)
|
||||
else if (STRNCMP(p, "file:", 5) == 0)
|
||||
/* skip "file:" (static tag) */
|
||||
p += 4;
|
||||
else if (!vim_iswhite(*p))
|
||||
else if (!VIM_ISWHITE(*p))
|
||||
{
|
||||
char_u *s, *n;
|
||||
int len;
|
||||
|
Reference in New Issue
Block a user