Skip to content

Commit 45a2495

Browse files
committed
patch 7.4.2102
Problem: Tiny build with GUI fails. Solution: Revert one FOR_ALL_ change.
1 parent 2932359 commit 45a2495

2 files changed

Lines changed: 3 additions & 1 deletion

File tree

src/gui.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4166,7 +4166,7 @@ gui_update_scrollbars(
41664166
/* avoid that moving components around generates events */
41674167
++hold_gui_events;
41684168

4169-
FOR_ALL_WINDOWS(wp)
4169+
for (wp = firstwin; wp != NULL; wp = W_NEXT(wp))
41704170
{
41714171
if (wp->w_buffer == NULL) /* just in case */
41724172
continue;

src/version.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -758,6 +758,8 @@ static char *(features[]) =
758758

759759
static int included_patches[] =
760760
{ /* Add new patch number below this line */
761+
/**/
762+
2102,
761763
/**/
762764
2101,
763765
/**/

0 commit comments

Comments
 (0)