1
0
forked from aniani/vim

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:
Bram Moolenaar
2017-03-12 20:10:05 +01:00
parent 91acfffc1e
commit 1c46544412
39 changed files with 213 additions and 214 deletions

View File

@@ -3371,7 +3371,7 @@ win_line(
if (lcs_trail)
{
trailcol = (colnr_T)STRLEN(ptr);
while (trailcol > (colnr_T)0 && vim_iswhite(ptr[trailcol - 1]))
while (trailcol > (colnr_T)0 && VIM_ISWHITE(ptr[trailcol - 1]))
--trailcol;
trailcol += (colnr_T) (ptr - line);
}
@@ -4577,7 +4577,7 @@ win_line(
# else
c_extra = ' ';
# endif
if (vim_iswhite(c))
if (VIM_ISWHITE(c))
{
#ifdef FEAT_CONCEAL
if (c == TAB)