commit | 45a249513f5ed2de0a6f6b5cb6e32015e35644be | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Sun Jul 24 22:25:15 2016 +0200 |
committer | Bram Moolenaar <Bram@vim.org> | Sun Jul 24 22:25:15 2016 +0200 |
tree | 183246ecdf3402424035cd95fee8d2f3bcca97e1 | |
parent | 2932359000b2f918d5fade79ea4d124d5943cd07 [diff] [blame] |
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 index ea049c3..88b5d7b 100644 --- a/src/gui.c +++ b/src/gui.c
@@ -4166,7 +4166,7 @@ /* 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;