3ef2ca
To: vim_dev@googlegroups.com
3ef2ca
Subject: Patch 7.4.087
3ef2ca
Fcc: outbox
3ef2ca
From: Bram Moolenaar <Bram@moolenaar.net>
3ef2ca
Mime-Version: 1.0
3ef2ca
Content-Type: text/plain; charset=UTF-8
3ef2ca
Content-Transfer-Encoding: 8bit
3ef2ca
------------
3ef2ca
3ef2ca
Patch 7.4.087
3ef2ca
Problem:    Compiler warning on 64 bit Windows systems.
3ef2ca
Solution:   Fix type cast. (Mike Williams)
3ef2ca
Files:      src/ops.c
3ef2ca
3ef2ca
3ef2ca
*** ../vim-7.4.086/src/ops.c	2013-11-11 01:29:16.000000000 +0100
3ef2ca
--- src/ops.c	2013-11-11 23:16:06.000000000 +0100
3ef2ca
***************
3ef2ca
*** 2193,2199 ****
3ef2ca
  	    else
3ef2ca
  	    {
3ef2ca
  		/* Replacing with \r or \n means splitting the line. */
3ef2ca
! 		after_p = alloc_check((unsigned)oldlen + 1 + n - STRLEN(newp));
3ef2ca
  		if (after_p != NULL)
3ef2ca
  		    STRMOVE(after_p, oldp);
3ef2ca
  	    }
3ef2ca
--- 2193,2200 ----
3ef2ca
  	    else
3ef2ca
  	    {
3ef2ca
  		/* Replacing with \r or \n means splitting the line. */
3ef2ca
! 		after_p = alloc_check(
3ef2ca
! 				   (unsigned)(oldlen + 1 + n - STRLEN(newp)));
3ef2ca
  		if (after_p != NULL)
3ef2ca
  		    STRMOVE(after_p, oldp);
3ef2ca
  	    }
3ef2ca
*** ../vim-7.4.086/src/version.c	2013-11-11 04:25:48.000000000 +0100
3ef2ca
--- src/version.c	2013-11-11 23:16:23.000000000 +0100
3ef2ca
***************
3ef2ca
*** 740,741 ****
3ef2ca
--- 740,743 ----
3ef2ca
  {   /* Add new patch number below this line */
3ef2ca
+ /**/
3ef2ca
+     87,
3ef2ca
  /**/
3ef2ca
3ef2ca
3ef2ca
-- 
3ef2ca
SECOND SOLDIER: It could be carried by an African swallow!
3ef2ca
FIRST SOLDIER:  Oh  yes! An African swallow maybe ... but not a European
3ef2ca
                swallow. that's my point.
3ef2ca
                 "Monty Python and the Holy Grail" PYTHON (MONTY) PICTURES LTD
3ef2ca
3ef2ca
 /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
3ef2ca
///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
3ef2ca
\\\  an exciting new programming language -- http://www.Zimbu.org        ///
3ef2ca
 \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///