home *** CD-ROM | disk | FTP | other *** search
/ vim.ftp.fu-berlin.de / 2015-02-03.vim.ftp.fu-berlin.de.tar / vim.ftp.fu-berlin.de / patches / 7.2 / 7.2.343 < prev    next >
Encoding:
Internet Message Format  |  2010-01-18  |  1.3 KB

  1. To: vim-dev@vim.org
  2. Subject: Patch 7.2.343
  3. Fcc: outbox
  4. From: Bram Moolenaar <Bram@moolenaar.net>
  5. Mime-Version: 1.0
  6. Content-Type: text/plain; charset=UTF-8
  7. Content-Transfer-Encoding: 8bit
  8. ------------
  9.  
  10. Patch 7.2.343 (after 7.2.338)
  11. Problem:    Can't compile on Win32.
  12. Solution:   Insert the missing '|'.
  13. Files:        src/ex_cmds2.c
  14.  
  15.  
  16. *** ../vim-7.2.342/src/ex_cmds2.c    2010-01-19 16:31:10.000000000 +0100
  17. --- src/ex_cmds2.c    2010-01-19 23:22:40.000000000 +0100
  18. ***************
  19. *** 2816,2822 ****
  20.   {
  21.       int    fd_tmp = mch_open(filename, O_RDONLY
  22.   # ifdef WIN32
  23. !               O_BINARY | O_NOINHERIT
  24.   # endif
  25.                 , 0);
  26.   
  27. --- 2816,2822 ----
  28.   {
  29.       int    fd_tmp = mch_open(filename, O_RDONLY
  30.   # ifdef WIN32
  31. !               | O_BINARY | O_NOINHERIT
  32.   # endif
  33.                 , 0);
  34.   
  35. *** ../vim-7.2.342/src/version.c    2010-01-19 18:05:05.000000000 +0100
  36. --- src/version.c    2010-01-19 23:24:05.000000000 +0100
  37. ***************
  38. *** 683,684 ****
  39. --- 683,686 ----
  40.   {   /* Add new patch number below this line */
  41. + /**/
  42. +     343,
  43.   /**/
  44.  
  45. -- 
  46. I'm writing a book.  I've got the page numbers done.
  47.  
  48.  /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
  49. ///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
  50. \\\        download, build and distribute -- http://www.A-A-P.org        ///
  51.  \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///
  52.