0
0
mirror of https://github.com/vim/vim.git synced 2025-09-23 03:43:49 -04:00

patch 8.0.0448: some macros are in lower case

Problem:    Some macros are in lower case, which can be confusing.
Solution:   Make a few lower case macros upper case.
This commit is contained in:
Bram Moolenaar
2017-03-12 18:23:53 +01:00
parent 8774845ce1
commit b5aedf3e22
30 changed files with 194 additions and 166 deletions

View File

@@ -4476,7 +4476,7 @@ gui_do_scroll(void)
pum_redraw();
#endif
return (wp == curwin && !equalpos(curwin->w_cursor, old_cursor));
return (wp == curwin && !EQUAL_POS(curwin->w_cursor, old_cursor));
}
@@ -5118,7 +5118,7 @@ gui_update_screen(void)
curwin->w_p_cole > 0
# endif
)
&& !equalpos(last_cursormoved, curwin->w_cursor))
&& !EQUAL_POS(last_cursormoved, curwin->w_cursor))
{
# ifdef FEAT_AUTOCMD
if (has_cursormoved())