astepano / rpms / vim

Forked from rpms/vim 6 years ago
Clone
0eb9c69
To: vim_dev@googlegroups.com
0eb9c69
Subject: Patch 7.4.484
0eb9c69
Fcc: outbox
0eb9c69
From: Bram Moolenaar <Bram@moolenaar.net>
0eb9c69
Mime-Version: 1.0
0eb9c69
Content-Type: text/plain; charset=UTF-8
0eb9c69
Content-Transfer-Encoding: 8bit
0eb9c69
------------
0eb9c69
0eb9c69
Patch 7.4.484 (after 7.4.483)
0eb9c69
Problem:    Compiler warning on MS-Windows. (Ken Takata)
0eb9c69
Solution:   Add type cast.
0eb9c69
Files:	    src/getchar.c
0eb9c69
0eb9c69
0eb9c69
*** ../vim-7.4.483/src/getchar.c	2014-10-21 16:22:01.403175226 +0200
0eb9c69
--- src/getchar.c	2014-10-21 18:12:33.170273428 +0200
0eb9c69
***************
0eb9c69
*** 4530,4536 ****
0eb9c69
  	    if (q != NULL)
0eb9c69
  	    {
0eb9c69
  		vim_unescape_csi(q);
0eb9c69
! 		qlen = STRLEN(q);
0eb9c69
  		vim_free(q);
0eb9c69
  	    }
0eb9c69
  	}
0eb9c69
--- 4530,4536 ----
0eb9c69
  	    if (q != NULL)
0eb9c69
  	    {
0eb9c69
  		vim_unescape_csi(q);
0eb9c69
! 		qlen = (int)STRLEN(q);
0eb9c69
  		vim_free(q);
0eb9c69
  	    }
0eb9c69
  	}
0eb9c69
*** ../vim-7.4.483/src/version.c	2014-10-21 16:22:01.407175226 +0200
0eb9c69
--- src/version.c	2014-10-21 18:14:13.410273647 +0200
0eb9c69
***************
0eb9c69
*** 743,744 ****
0eb9c69
--- 743,746 ----
0eb9c69
  {   /* Add new patch number below this line */
0eb9c69
+ /**/
0eb9c69
+     484,
0eb9c69
  /**/
0eb9c69
0eb9c69
-- 
0eb9c69
"My particular problem is with registry entries, which seem to just
0eb9c69
accumulate like plastic coffee cups..."           -- Paul Moore
0eb9c69
0eb9c69
 /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
0eb9c69
///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
0eb9c69
\\\  an exciting new programming language -- http://www.Zimbu.org        ///
0eb9c69
 \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///