commit | d8644bd64645f2ba64aeac44d22126d2fd63afc3 | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Sun Jun 12 20:33:38 2011 +0200 |
committer | Bram Moolenaar <Bram@vim.org> | Sun Jun 12 20:33:38 2011 +0200 |
tree | f002b9906d4ffbdac52f5a2312dbff1818a07bfb | |
parent | 3ed16dc6b71131f9a5808c066335617f5b6416e0 [diff] [blame] |
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 4357c89..2c33562 100644 --- a/src/gui_mac.c +++ b/src/gui_mac.c
@@ -1840,7 +1840,7 @@ 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);