8b9a1c
To: vim_dev@googlegroups.com
8b9a1c
Subject: Patch 7.4.126
8b9a1c
Fcc: outbox
8b9a1c
From: Bram Moolenaar <Bram@moolenaar.net>
8b9a1c
Mime-Version: 1.0
8b9a1c
Content-Type: text/plain; charset=UTF-8
8b9a1c
Content-Transfer-Encoding: 8bit
8b9a1c
------------
8b9a1c
8b9a1c
Patch 7.4.126
8b9a1c
Problem:    Compiler warnings for "const" and incompatible types.
8b9a1c
Solution:   Remove "const", add type cast. (Ken Takata)
8b9a1c
Files:	    src/os_win32.c
8b9a1c
8b9a1c
8b9a1c
*** ../vim-7.4.125/src/os_win32.c	2013-12-11 18:36:28.000000000 +0100
8b9a1c
--- src/os_win32.c	2013-12-12 20:19:39.000000000 +0100
8b9a1c
***************
8b9a1c
*** 3830,3836 ****
8b9a1c
  
8b9a1c
      static BOOL
8b9a1c
  vim_create_process(
8b9a1c
!     const char		*cmd,
8b9a1c
      DWORD		flags,
8b9a1c
      BOOL		inherit_handles,
8b9a1c
      STARTUPINFO		*si,
8b9a1c
--- 3830,3836 ----
8b9a1c
  
8b9a1c
      static BOOL
8b9a1c
  vim_create_process(
8b9a1c
!     char		*cmd,
8b9a1c
      DWORD		flags,
8b9a1c
      BOOL		inherit_handles,
8b9a1c
      STARTUPINFO		*si,
8b9a1c
***************
8b9a1c
*** 3853,3859 ****
8b9a1c
  		flags,			/* Creation flags */
8b9a1c
  		NULL,			/* Environment */
8b9a1c
  		NULL,			/* Current directory */
8b9a1c
! 		si,			/* Startup information */
8b9a1c
  		pi);			/* Process information */
8b9a1c
  	    vim_free(wcmd);
8b9a1c
  	    return ret;
8b9a1c
--- 3853,3859 ----
8b9a1c
  		flags,			/* Creation flags */
8b9a1c
  		NULL,			/* Environment */
8b9a1c
  		NULL,			/* Current directory */
8b9a1c
! 		(LPSTARTUPINFOW)si,	/* Startup information */
8b9a1c
  		pi);			/* Process information */
8b9a1c
  	    vim_free(wcmd);
8b9a1c
  	    return ret;
8b9a1c
*** ../vim-7.4.125/src/version.c	2013-12-11 18:36:28.000000000 +0100
8b9a1c
--- src/version.c	2013-12-12 20:21:27.000000000 +0100
8b9a1c
***************
8b9a1c
*** 740,741 ****
8b9a1c
--- 740,743 ----
8b9a1c
  {   /* Add new patch number below this line */
8b9a1c
+ /**/
8b9a1c
+     126,
8b9a1c
  /**/
8b9a1c
8b9a1c
-- 
8b9a1c
Microsoft is to software what McDonalds is to gourmet cooking
8b9a1c
8b9a1c
 /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
8b9a1c
///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
8b9a1c
\\\  an exciting new programming language -- http://www.Zimbu.org        ///
8b9a1c
 \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///