On Sun, 24 Jul 2016, Bram Moolenaar wrote:
Patch 7.4.2102 (after 7.4.2101)
Problem: Tiny build with GUI fails.
Solution: Revert one FOR_ALL_ change.
Files: src/gui.c
*** ../vim-7.4.2101/src/gui.c 2016-07-24 21:58:39.704057634 +0200
--- src/gui.c 2016-07-24 22:22:54.802631965 +0200
***************
*** 4166,4172 ****
/* avoid that moving components around generates events */
++hold_gui_events;
! FOR_ALL_WINDOWS(wp)
{
if (wp->w_buffer == NULL) /* just in case */
continue;
--- 4166,4172 ----
/* avoid that moving components around generates events */
++hold_gui_events;
! for (wp = firstwin; wp != NULL; wp = W_NEXT(wp))
{
if (wp->w_buffer == NULL) /* just in case */
continue;
*** ../vim-7.4.2101/src/version.c 2016-07-24 21:58:39.720057487 +0200
--- src/version.c 2016-07-24 22:24:22.025828318 +0200
***************
*** 760,761 ****
--- 760,763 ----
{ /* Add new patch number below this line */
+ /**/
+ 2102,
/**/
Well, --huge is breaking on OSX for me again. I'm seeing if I can figure
out where it broke. I wish I knew how to use bisect...
--
Hisashi T Fujinaka - [email protected]
BSEE + BSChem + BAEnglish + MSCS + $2.50 = coffee
--
--
You received this message from the "vim_dev" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php
---
You received this message because you are subscribed to the Google Groups "vim_dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/d/optout.