summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBram Moolenaar <bram@vim.org>2011-06-12 20:33:38 +0200
committerBram Moolenaar <bram@vim.org>2011-06-12 20:33:38 +0200
commit6dbf5f838ed71f353cfaf2655dc84d001e80c173 (patch)
treebca1dc162de4be411a62c925c8609b94177d6322
parente62287af7ef3489f93904eff2e2200036c16eac9 (diff)
downloadvim-6dbf5f838ed71f353cfaf2655dc84d001e80c173.tar.gz
updated for version 7.3.208v7.3.208v7-3-208
Problem: Early terminated if statement. Solution: Remove the semicolon. (Lech Lorens)
-rw-r--r--src/gui_mac.c2
-rw-r--r--src/version.c2
2 files changed, 3 insertions, 1 deletions
diff --git a/src/gui_mac.c b/src/gui_mac.c
index 4357c892..2c335624 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 d3c2421b..38835bc0 100644
--- 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,