diff src/window.c @ 7311:743c258ca3ab v7.4.961

commit https://github.com/vim/vim/commit/9dc2ce398bb3456cc8f590ef0260459798b34d2a Author: Bram Moolenaar <Bram@vim.org> Date: Sat Dec 5 19:47:04 2015 +0100 patch 7.4.961 Problem: Test107 fails in some circunstances. Solution: When using "zt", "zb" and "z=" recompute the fraction.
author Christian Brabandt <cb@256bit.org>
date Sat, 05 Dec 2015 20:00:04 +0100
parents 79270eaac6de
children 1886f2863437
line wrap: on
line diff
--- a/src/window.c
+++ b/src/window.c
@@ -75,7 +75,6 @@ static int frame_check_width __ARGS((fra
 #endif /* FEAT_WINDOWS */
 
 static win_T *win_alloc __ARGS((win_T *after, int hidden));
-static void set_fraction __ARGS((win_T *wp));
 
 #define URL_SLASH	1		/* path_is_url() has found "://" */
 #define URL_BACKSLASH	2		/* path_is_url() has found ":\\" */
@@ -5828,7 +5827,7 @@ win_drag_vsep_line(dragwin, offset)
 /*
  * Set wp->w_fraction for the current w_wrow and w_height.
  */
-    static void
+    void
 set_fraction(wp)
     win_T	*wp;
 {