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.
diff --git a/src/gui.c b/src/gui.c
index 203035f..36d6975 100644
--- a/src/gui.c
+++ b/src/gui.c
@@ -4476,7 +4476,7 @@
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 @@
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())