diff options
author | Bram Moolenaar <Bram@vim.org> | 2016-07-24 22:25:15 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2016-07-24 22:25:15 +0200 |
commit | 45a249513f5ed2de0a6f6b5cb6e32015e35644be (patch) | |
tree | 183246ecdf3402424035cd95fee8d2f3bcca97e1 /src/gui.c | |
parent | 2932359000b2f918d5fade79ea4d124d5943cd07 (diff) | |
download | vim-git-45a249513f5ed2de0a6f6b5cb6e32015e35644be.tar.gz |
patch 7.4.2102v7.4.2102
Problem: Tiny build with GUI fails.
Solution: Revert one FOR_ALL_ change.
Diffstat (limited to 'src/gui.c')
-rw-r--r-- | src/gui.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; |