Blame SOURCES/7.4.141

22c937
To: vim_dev@googlegroups.com
22c937
Subject: Patch 7.4.141
22c937
Fcc: outbox
22c937
From: Bram Moolenaar <Bram@moolenaar.net>
22c937
Mime-Version: 1.0
22c937
Content-Type: text/plain; charset=UTF-8
22c937
Content-Transfer-Encoding: 8bit
22c937
------------
22c937
22c937
Patch 7.4.141
22c937
Problem:    Problems when building with Borland: st_mode is signed short;
22c937
	    can't build with Python; temp files not ignored by Mercurial;
22c937
	    building with DEBUG doesn't define _DEBUG.
22c937
Solution:   Fix the problems. (Ken Takata)
22c937
Files:	    src/Make_bc5.mak, src/if_py_both.h, src/os_win32.c
22c937
22c937
22c937
*** ../vim-7.4.140/src/Make_bc5.mak	2013-06-03 20:09:58.000000000 +0200
22c937
--- src/Make_bc5.mak	2014-01-10 18:12:14.000000000 +0100
22c937
***************
22c937
*** 419,425 ****
22c937
  ALIGNARG = -a$(ALIGN)
22c937
  #
22c937
  !if ("$(DEBUG)"=="yes")
22c937
! DEFINES=$(DEFINES) -DDEBUG
22c937
  !endif
22c937
  #
22c937
  !if ("$(OLE)"=="yes")
22c937
--- 419,425 ----
22c937
  ALIGNARG = -a$(ALIGN)
22c937
  #
22c937
  !if ("$(DEBUG)"=="yes")
22c937
! DEFINES=$(DEFINES) -DDEBUG -D_DEBUG
22c937
  !endif
22c937
  #
22c937
  !if ("$(OLE)"=="yes")
22c937
*** ../vim-7.4.140/src/if_py_both.h	2013-12-07 14:28:37.000000000 +0100
22c937
--- src/if_py_both.h	2014-01-10 18:12:14.000000000 +0100
22c937
***************
22c937
*** 13,18 ****
22c937
--- 13,23 ----
22c937
   * Common code for if_python.c and if_python3.c.
22c937
   */
22c937
  
22c937
+ #ifdef __BORLANDC__
22c937
+ /* Disable Warning W8060: Possibly incorrect assignment in function ... */
22c937
+ # pragma warn -8060
22c937
+ #endif
22c937
+ 
22c937
  static char_u e_py_systemexit[]	= "E880: Can't handle SystemExit of %s exception in vim";
22c937
  
22c937
  #if PY_VERSION_HEX < 0x02050000
22c937
*** ../vim-7.4.140/src/os_win32.c	2014-01-10 13:51:35.000000000 +0100
22c937
--- src/os_win32.c	2014-01-10 18:12:14.000000000 +0100
22c937
***************
22c937
*** 2960,2966 ****
22c937
      int		n;
22c937
  
22c937
      n = mch_stat(name, &st);
22c937
!     return n == 0 ? (long)st.st_mode : -1L;
22c937
  }
22c937
  
22c937
  
22c937
--- 2960,2966 ----
22c937
      int		n;
22c937
  
22c937
      n = mch_stat(name, &st);
22c937
!     return n == 0 ? (long)(unsigned short)st.st_mode : -1L;
22c937
  }
22c937
  
22c937
  
22c937
*** ../vim-7.4.140/src/version.c	2014-01-10 16:43:09.000000000 +0100
22c937
--- src/version.c	2014-01-10 18:14:58.000000000 +0100
22c937
***************
22c937
*** 740,741 ****
22c937
--- 740,743 ----
22c937
  {   /* Add new patch number below this line */
22c937
+ /**/
22c937
+     141,
22c937
  /**/
22c937
22c937
-- 
22c937
Never eat yellow snow.
22c937
22c937
 /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
22c937
///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
22c937
\\\  an exciting new programming language -- http://www.Zimbu.org        ///
22c937
 \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///