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