diff src/gui_mac.c @ 2869:205adc87d579 v7.3.208

updated for version 7.3.208 Problem: Early terminated if statement. Solution: Remove the semicolon. (Lech Lorens)
author Bram Moolenaar <bram@vim.org>
date Sun, 12 Jun 2011 20:33:38 +0200
parents 951641b8784d
children fd4224d9ee09
line wrap: on
line diff
--- 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);