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