mirror of
https://github.com/vim/vim.git
synced 2025-09-25 03:54:15 -04:00
patch 7.4.2101
Problem: Looping over windows, buffers and tab pages is inconsistant. Solution: Use FOR_ALL_ macros everywhere. (Yegappan Lakshmanan)
This commit is contained in:
@@ -4073,7 +4073,7 @@ check_scrollbind(linenr_T topline_diff, long leftcol_diff)
|
||||
* loop through the scrollbound windows and scroll accordingly
|
||||
*/
|
||||
VIsual_select = VIsual_active = 0;
|
||||
for (curwin = firstwin; curwin; curwin = curwin->w_next)
|
||||
FOR_ALL_WINDOWS(curwin)
|
||||
{
|
||||
curbuf = curwin->w_buffer;
|
||||
/* skip original window and windows with 'noscrollbind' */
|
||||
|
Reference in New Issue
Block a user