diff options
author | Brandon Coleman <metrix1978@gmail.com> | 2014-05-28 16:35:14 -0500 |
---|---|---|
committer | Brandon Coleman <metrix1978@gmail.com> | 2014-06-12 01:20:36 -0500 |
commit | 7f21665673686c653389ff4e86a2ce8e17804178 (patch) | |
tree | bffd897b743ce4b1cf79ecbd4ca988821768c3a7 /src/nvim/search.c | |
parent | 7cdbca77899b8bb09c7a0a4c874c06021543c986 (diff) | |
download | rneovim-7f21665673686c653389ff4e86a2ce8e17804178.tar.gz rneovim-7f21665673686c653389ff4e86a2ce8e17804178.tar.bz2 rneovim-7f21665673686c653389ff4e86a2ce8e17804178.zip |
move/remove W_* macros
move W_ENDCOL to screen.c
remove the rest of the W_* macros
Diffstat (limited to 'src/nvim/search.c')
-rw-r--r-- | src/nvim/search.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/search.c b/src/nvim/search.c index 08fdfa4b63..af43f356e0 100644 --- a/src/nvim/search.c +++ b/src/nvim/search.c @@ -2022,7 +2022,7 @@ showmatch ( if (!curwin->w_p_wrap) getvcol(curwin, lpos, NULL, &vcol, NULL); if (curwin->w_p_wrap || (vcol >= curwin->w_leftcol - && vcol < curwin->w_leftcol + W_WIDTH(curwin))) { + && vcol < curwin->w_leftcol + curwin->w_width)) { mpos = *lpos; /* save the pos, update_screen() may change it */ save_cursor = curwin->w_cursor; save_so = p_so; |