de97d74
To: vim-dev@vim.org
de97d74
Subject: patch 7.1.119
de97d74
Fcc: outbox
de97d74
From: Bram Moolenaar <Bram@moolenaar.net>
de97d74
Mime-Version: 1.0
de97d74
Content-Type: text/plain; charset=ISO-8859-1
de97d74
Content-Transfer-Encoding: 8bit
de97d74
------------
de97d74
de97d74
Patch 7.1.119
de97d74
Problem:    Crash when 'cmdheight' set to very large value. (A.Politz)
de97d74
Solution:   Limit 'cmdheight' to 'lines' minus one.  Store right value of
de97d74
	    'cmdheight' when running out of room.
de97d74
Files:	    src/option.c, src/window.c
de97d74
de97d74
de97d74
*** ../vim-7.1.118/src/option.c	Thu Sep  6 16:33:47 2007
de97d74
--- src/option.c	Tue Sep 25 12:17:35 2007
de97d74
***************
de97d74
*** 7824,7829 ****
de97d74
--- 7824,7831 ----
de97d74
  	    errmsg = e_positive;
de97d74
  	    p_ch = 1;
de97d74
  	}
de97d74
+ 	if (p_ch > Rows - min_rows() + 1)
de97d74
+ 	    p_ch = Rows - min_rows() + 1;
de97d74
  
de97d74
  	/* Only compute the new window layout when startup has been
de97d74
  	 * completed. Otherwise the frame sizes may be wrong. */
de97d74
*** ../vim-7.1.118/src/window.c	Thu Sep 13 18:25:08 2007
de97d74
--- src/window.c	Tue Sep 25 12:13:56 2007
de97d74
***************
de97d74
*** 5523,5528 ****
de97d74
--- 5523,5529 ----
de97d74
  		{
de97d74
  		    EMSG(_(e_noroom));
de97d74
  		    p_ch = old_p_ch;
de97d74
+ 		    curtab->tp_ch_used = p_ch;
de97d74
  		    cmdline_row = Rows - p_ch;
de97d74
  		    break;
de97d74
  		}
de97d74
*** ../vim-7.1.118/src/version.c	Tue Sep 25 14:19:35 2007
de97d74
--- src/version.c	Tue Sep 25 14:48:14 2007
de97d74
***************
de97d74
*** 668,669 ****
de97d74
--- 668,671 ----
de97d74
  {   /* Add new patch number below this line */
de97d74
+ /**/
de97d74
+     119,
de97d74
  /**/
de97d74
de97d74
-- 
de97d74
Q: Why does /dev/null accept only integers?
de97d74
A: You can't sink a float.
de97d74
de97d74
 /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
de97d74
///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
de97d74
\\\        download, build and distribute -- http://www.A-A-P.org        ///
de97d74
 \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///