From: Bram Moolenaar Date: Sun, 12 Jun 2011 18:33:38 +0000 (+0200) Subject: updated for version 7.3.208 X-Git-Tag: v7.3.208 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d8644bd64645f2ba64aeac44d22126d2fd63afc3;p=vim updated for version 7.3.208 Problem: Early terminated if statement. Solution: Remove the semicolon. (Lech Lorens) --- diff --git a/src/gui_mac.c b/src/gui_mac.c index 4357c8925..2c3356248 100644 --- a/src/gui_mac.c +++ b/src/gui_mac.c @@ -1840,7 +1840,7 @@ gui_mac_doInZoomClick(EventRecord *theEvent, WindowPtr whichWindow) p.v -= gui.scrollbar_height; p.v -= p.v % gui.char_height; p.v += 2 * gui.border_width; - if (gui.which_scrollbars[SBAR_BOTTOM]); + if (gui.which_scrollbars[SBAR_BOTTOM]) p.v += gui.scrollbar_height; ZoomWindowIdeal(whichWindow, thePart, &p); diff --git a/src/version.c b/src/version.c index d3c2421b9..38835bc03 100644 --- a/src/version.c +++ b/src/version.c @@ -709,6 +709,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 208, /**/ 207, /**/