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 / 6.0.099 < prev    next >
Encoding:
Internet Message Format  |  2001-12-13  |  1.6 KB

  1. To: vim-dev@vim.org
  2. Subject: Patch 6.0.099
  3. Fcc: outbox
  4. From: Bram Moolenaar <Bram@moolenaar.net>
  5. MIME-Version: 1.0
  6. Content-Type: text/plain; charset=ISO-8859-1
  7. Content-Transfer-Encoding: 8bit
  8. ------------
  9.  
  10. Patch 6.0.099
  11. Problem:    Cygwin: When running Vi compatible MS-DOS line endings cause
  12.         trouble.
  13. Solution:   Make the default for 'fileformats' "unix,dos" in Vi compatible
  14.         mode.  (Michael Schaap)
  15. Files:        src/option.h
  16.  
  17.  
  18. *** ../vim60.98/src/option.h    Thu Nov  1 12:22:41 2001
  19. --- src/option.h    Fri Dec 14 20:23:52 2001
  20. ***************
  21. *** 67,74 ****
  22.   # else
  23.   #  define DFLT_FF    "unix"
  24.   #  define DFLT_FFS_VIM    "unix,dos"
  25. ! #  define DFLT_FFS_VI    ""
  26. ! #  define DFLT_TEXTAUTO    FALSE
  27.   # endif
  28.   #endif
  29.   
  30. --- 67,79 ----
  31.   # else
  32.   #  define DFLT_FF    "unix"
  33.   #  define DFLT_FFS_VIM    "unix,dos"
  34. ! #  ifdef __CYGWIN__
  35. ! #   define DFLT_FFS_VI    "unix,dos"    /* Cygwin always needs file detection */
  36. ! #   define DFLT_TEXTAUTO TRUE
  37. ! #  else
  38. ! #   define DFLT_FFS_VI    ""
  39. ! #   define DFLT_TEXTAUTO FALSE
  40. ! #  endif
  41.   # endif
  42.   #endif
  43.   
  44. *** ../vim60.98/src/version.c    Fri Dec 14 20:19:45 2001
  45. --- src/version.c    Fri Dec 14 20:27:35 2001
  46. ***************
  47. *** 608,609 ****
  48. --- 608,611 ----
  49.   {   /* Add new patch number below this line */
  50. + /**/
  51. +     99,
  52.   /**/
  53.  
  54. -- 
  55. hundred-and-one symptoms of being an internet addict:
  56. 95. Only communication in your household is through email.
  57.  
  58.  ///  Bram Moolenaar -- Bram@moolenaar.net -- http://www.moolenaar.net  \\\
  59. (((   Creator of Vim -- http://vim.sf.net -- ftp://ftp.vim.org/pub/vim   )))
  60.  \\\  Help me helping AIDS orphans in Uganda - http://iccf-holland.org  ///
  61.