073263
To: vim_dev@googlegroups.com
073263
Subject: Patch 7.4.301
073263
Fcc: outbox
073263
From: Bram Moolenaar <Bram@moolenaar.net>
073263
Mime-Version: 1.0
073263
Content-Type: text/plain; charset=UTF-8
073263
Content-Transfer-Encoding: 8bit
073263
------------
073263
073263
Patch 7.4.301 (after 7.4.280)
073263
Problem:    Still a scrolling problem when loading a session file.
073263
Solution:   Fix off-by-one mistake. (Nobuhiro Takasaki)
073263
Files:	    src/window.c
073263
073263
073263
*** ../vim-7.4.300/src/window.c	2014-05-07 20:25:30.845273872 +0200
073263
--- src/window.c	2014-05-22 15:11:58.786447193 +0200
073263
***************
073263
*** 5748,5754 ****
073263
  		lnum++;
073263
  		wp->w_wrow -= line_size + sline;
073263
  	    }
073263
! 	    else if (sline > 0)
073263
  	    {
073263
  		/* First line of file reached, use that as topline. */
073263
  		lnum = 1;
073263
--- 5748,5754 ----
073263
  		lnum++;
073263
  		wp->w_wrow -= line_size + sline;
073263
  	    }
073263
! 	    else if (sline >= 0)
073263
  	    {
073263
  		/* First line of file reached, use that as topline. */
073263
  		lnum = 1;
073263
*** ../vim-7.4.300/src/version.c	2014-05-22 14:54:22.854468654 +0200
073263
--- src/version.c	2014-05-22 15:12:33.770446481 +0200
073263
***************
073263
*** 736,737 ****
073263
--- 736,739 ----
073263
  {   /* Add new patch number below this line */
073263
+ /**/
073263
+     301,
073263
  /**/
073263
073263
-- 
073263
hundred-and-one symptoms of being an internet addict:
073263
191. You rate eating establishments not by the quality of the food,
073263
     but by the availability of electrical outlets for your PowerBook.
073263
073263
 /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
073263
///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
073263
\\\  an exciting new programming language -- http://www.Zimbu.org        ///
073263
 \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///