diff options
author | Bram Moolenaar <Bram@vim.org> | 2011-06-12 20:33:38 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2011-06-12 20:33:38 +0200 |
commit | d8644bd64645f2ba64aeac44d22126d2fd63afc3 (patch) | |
tree | f002b9906d4ffbdac52f5a2312dbff1818a07bfb /src | |
parent | 3ed16dc6b71131f9a5808c066335617f5b6416e0 (diff) | |
download | vim-d8644bd64645f2ba64aeac44d22126d2fd63afc3.zip |
updated for version 7.3.208
Problem: Early terminated if statement.
Solution: Remove the semicolon. (Lech Lorens)
Diffstat (limited to 'src')
-rw-r--r-- | src/gui_mac.c | 2 | ||||
-rw-r--r-- | src/version.c | 2 |
2 files changed, 3 insertions, 1 deletions
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 @@ -710,6 +710,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 208, +/**/ 207, /**/ 206, |