jkunstle / rpms / vim

Forked from rpms/vim 3 years ago
Clone
3ef2ca
To: vim_dev@googlegroups.com
3ef2ca
Subject: Patch 7.4.271
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.271
3ef2ca
Problem:    Compiler warning on 64 bit windows.
3ef2ca
Solution:   Add type cast. (Mike Williams)
3ef2ca
Files:	    src/ops.c
3ef2ca
3ef2ca
3ef2ca
*** ../vim-7.4.270/src/ops.c	2014-04-29 12:15:22.860032651 +0200
3ef2ca
--- src/ops.c	2014-04-29 15:54:23.055802359 +0200
3ef2ca
***************
3ef2ca
*** 6559,6565 ****
3ef2ca
      {
3ef2ca
  	for (ss = (char_u **) str; *ss != NULL; ++ss, ++lnum)
3ef2ca
  	{
3ef2ca
! 	    i = STRLEN(*ss);
3ef2ca
  	    pp[lnum] = vim_strnsave(*ss, i);
3ef2ca
  	    if (i > maxlen)
3ef2ca
  		maxlen = i;
3ef2ca
--- 6559,6565 ----
3ef2ca
      {
3ef2ca
  	for (ss = (char_u **) str; *ss != NULL; ++ss, ++lnum)
3ef2ca
  	{
3ef2ca
! 	    i = (long)STRLEN(*ss);
3ef2ca
  	    pp[lnum] = vim_strnsave(*ss, i);
3ef2ca
  	    if (i > maxlen)
3ef2ca
  		maxlen = i;
3ef2ca
*** ../vim-7.4.270/src/version.c	2014-04-29 15:11:39.783847283 +0200
3ef2ca
--- src/version.c	2014-04-29 15:52:54.083803919 +0200
3ef2ca
***************
3ef2ca
*** 736,737 ****
3ef2ca
--- 736,739 ----
3ef2ca
  {   /* Add new patch number below this line */
3ef2ca
+ /**/
3ef2ca
+     271,
3ef2ca
  /**/
3ef2ca
3ef2ca
-- 
3ef2ca
From "know your smileys":
3ef2ca
 :.-(	Crying
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    ///