summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2016-07-24 22:25:15 +0200
committerBram Moolenaar <Bram@vim.org>2016-07-24 22:25:15 +0200
commit45a249513f5ed2de0a6f6b5cb6e32015e35644be (patch)
tree183246ecdf3402424035cd95fee8d2f3bcca97e1
parent2932359000b2f918d5fade79ea4d124d5943cd07 (diff)
downloadvim-git-45a249513f5ed2de0a6f6b5cb6e32015e35644be.tar.gz
patch 7.4.2102v7.4.2102
Problem: Tiny build with GUI fails. Solution: Revert one FOR_ALL_ change.
-rw-r--r--src/gui.c2
-rw-r--r--src/version.c2
2 files changed, 3 insertions, 1 deletions
diff --git a/src/gui.c b/src/gui.c
index ea049c39d..88b5d7bf9 100644
--- 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
index 0b63a299d..041228eca 100644
--- 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,