# HG changeset patch # User Christian Brabandt # Date 1469392205 -7200 # Node ID fe665dae719729d4e2c67b41db29434b23149855 # Parent 7fadf2ef3baeae1fb333701fb9eb531b41d23992 commit https://github.com/vim/vim/commit/45a249513f5ed2de0a6f6b5cb6e32015e35644be Author: Bram Moolenaar Date: Sun Jul 24 22:25:15 2016 +0200 patch 7.4.2102 Problem: Tiny build with GUI fails. Solution: Revert one FOR_ALL_ change. diff --git a/src/gui.c b/src/gui.c --- a/src/gui.c +++ b/src/gui.c @@ -4166,7 +4166,7 @@ gui_update_scrollbars( /* avoid that moving components around generates events */ ++hold_gui_events; - FOR_ALL_WINDOWS(wp) + for (wp = firstwin; wp != NULL; wp = W_NEXT(wp)) { if (wp->w_buffer == NULL) /* just in case */ continue; diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -759,6 +759,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 2102, +/**/ 2101, /**/ 2100,