forked from aniani/vim
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:
6
src/ui.c
6
src/ui.c
@@ -442,7 +442,7 @@ clip_update_selection(VimClipboard *clip)
|
||||
/* If visual mode is only due to a redo command ("."), then ignore it */
|
||||
if (!redo_VIsual_busy && VIsual_active && (State & NORMAL))
|
||||
{
|
||||
if (lt(VIsual, curwin->w_cursor))
|
||||
if (LT_POS(VIsual, curwin->w_cursor))
|
||||
{
|
||||
start = VIsual;
|
||||
end = curwin->w_cursor;
|
||||
@@ -456,8 +456,8 @@ clip_update_selection(VimClipboard *clip)
|
||||
start = curwin->w_cursor;
|
||||
end = VIsual;
|
||||
}
|
||||
if (!equalpos(clip->start, start)
|
||||
|| !equalpos(clip->end, end)
|
||||
if (!EQUAL_POS(clip->start, start)
|
||||
|| !EQUAL_POS(clip->end, end)
|
||||
|| clip->vmode != VIsual_mode)
|
||||
{
|
||||
clip_clear_selection(clip);
|
||||
|
Reference in New Issue
Block a user