0
0
mirror of https://github.com/vim/vim.git synced 2025-09-24 03:44:06 -04:00

patch 8.0.1135: W_WINCOL() is always the same

Problem:    W_WINCOL() is always the same.
Solution:   Expand the macro.
This commit is contained in:
Bram Moolenaar
2017-09-22 14:35:51 +02:00
parent 76301956f0
commit 53f8174eae
15 changed files with 40 additions and 40 deletions

View File

@@ -2845,7 +2845,7 @@ retnomove:
#endif
row -= W_WINROW(curwin);
col -= W_WINCOL(curwin);
col -= curwin->w_wincol;
/*
* When clicking beyond the end of the window, scroll the screen.