# HG changeset patch # User Bram Moolenaar # Date 1307903618 -7200 # Node ID 205adc87d579512482c27f309c73d5fe8f612ff3 # Parent 53778e027581c89ba25b35bd7f103b1b42e859dc 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 --- a/src/gui_mac.c +++ b/src/gui_mac.c @@ -1840,7 +1840,7 @@ gui_mac_doInZoomClick(EventRecord *theEv 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 --- a/src/version.c +++ b/src/version.c @@ -710,6 +710,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 208, +/**/ 207, /**/ 206,