comparison src/normal.c @ 9649:fd9727ae3c49 v7.4.2101

commit https://github.com/vim/vim/commit/2932359000b2f918d5fade79ea4d124d5943cd07 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Jul 24 22:04:11 2016 +0200 patch 7.4.2101 Problem: Looping over windows, buffers and tab pages is inconsistant. Solution: Use FOR_ALL_ macros everywhere. (Yegappan Lakshmanan)
author Christian Brabandt <cb@256bit.org>
date Sun, 24 Jul 2016 22:15:07 +0200
parents 43b8570abbec
children 4aead6a9b7a9
comparison
equal deleted inserted replaced
9648:227649fd4301 9649:fd9727ae3c49
4071 4071
4072 /* 4072 /*
4073 * loop through the scrollbound windows and scroll accordingly 4073 * loop through the scrollbound windows and scroll accordingly
4074 */ 4074 */
4075 VIsual_select = VIsual_active = 0; 4075 VIsual_select = VIsual_active = 0;
4076 for (curwin = firstwin; curwin; curwin = curwin->w_next) 4076 FOR_ALL_WINDOWS(curwin)
4077 { 4077 {
4078 curbuf = curwin->w_buffer; 4078 curbuf = curwin->w_buffer;
4079 /* skip original window and windows with 'noscrollbind' */ 4079 /* skip original window and windows with 'noscrollbind' */
4080 if (curwin != old_curwin && curwin->w_p_scb) 4080 if (curwin != old_curwin && curwin->w_p_scb)
4081 { 4081 {