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.1.111 < prev    next >
Encoding:
Internet Message Format  |  2002-06-22  |  2.8 KB

  1. To: vim-dev@vim.org
  2. Subject: Patch 6.1.111
  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.1.111
  11. Problem:    It's not possible to detect using the Unix sources on Win32 or Mac.
  12. Solution:   Add has("macunix") and has("win32unix").
  13. Files:        runtime/doc/eval.txt, src/eval.c
  14.  
  15.  
  16. *** ../vim61.110/runtime/doc/eval.txt    Fri Mar 22 21:18:36 2002
  17. --- runtime/doc/eval.txt    Sun May 12 22:39:01 2002
  18. ***************
  19. *** 1,4 ****
  20. ! *eval.txt*      For Vim version 6.1.  Last change: 2002 Mar 21
  21.   
  22.   
  23.             VIM REFERENCE MANUAL    by Bram Moolenaar
  24. --- 1,4 ----
  25. ! *eval.txt*      For Vim version 6.1.  Last change: 2002 May 12
  26.   
  27.   
  28.             VIM REFERENCE MANUAL    by Bram Moolenaar
  29. ***************
  30. *** 2492,2497 ****
  31. --- 2505,2511 ----
  32.               and the argument list |arglist|.
  33.   localmap        Compiled with local mappings and abbr. |:map-local|
  34.   mac            Macintosh version of Vim.
  35. + macunix            Macintosh version of Vim, using Unix files (OS-X).
  36.   menu            Compiled with support for |:menu|.
  37.   mksession        Compiled with support for |:mksession|.
  38.   modify_fname        Compiled with file name modifiers. |filename-modifiers|
  39. ***************
  40. *** 2560,2565 ****
  41. --- 2574,2580 ----
  42.   winaltkeys        Compiled with 'winaltkeys' option.
  43.   win16            Win16 version of Vim (MS-Windows 3.1).
  44.   win32            Win32 version of Vim (MS-Windows 95/98/ME/NT/2000/XP).
  45. + win32unix        Win32 version of Vim, using Unix files (Cygwin)
  46.   win95            Win32 version for MS-Windows 95/98/ME.
  47.   writebackup        Compiled with 'writebackup' default on.
  48.   xfontset        Compiled with X fontset support |xfontset|.
  49. *** ../vim61.110/src/eval.c    Sun Jun 23 13:09:02 2002
  50. --- src/eval.c    Tue Jun 18 19:32:53 2002
  51. ***************
  52. *** 4070,4075 ****
  53. --- 4070,4078 ----
  54.   #ifdef MACOS /* TODO: Should we add MACOS_CLASSIC, MACOS_X? (Dany) */
  55.       "mac",
  56.   #endif
  57. + #if defined(MACOS_X_UNIX)
  58. +     "macunix",
  59. + #endif
  60.   #ifdef OS2
  61.       "os2",
  62.   #endif
  63. ***************
  64. *** 4090,4095 ****
  65. --- 4093,4101 ----
  66.   #endif
  67.   #ifdef WIN32
  68.       "win32",
  69. + #endif
  70. + #if defined(UNIX) && (defined(__CYGWIN32__) || defined(__CYGWIN__))
  71. +     "win32unix",
  72.   #endif
  73.   #ifdef WIN64
  74.       "win64",
  75. *** ../vim61.110/src/version.c    Sun Jun 23 15:10:12 2002
  76. --- src/version.c    Sun Jun 23 21:27:57 2002
  77. ***************
  78. *** 608,609 ****
  79. --- 608,611 ----
  80.   {   /* Add new patch number below this line */
  81. + /**/
  82. +     111,
  83.   /**/
  84.  
  85. -- 
  86. GALAHAD: No. Look, I can tackle this lot single-handed!
  87. GIRLS:   Yes, yes, let him Tackle us single-handed!
  88.                  "Monty Python and the Holy Grail" PYTHON (MONTY) PICTURES LTD
  89.  
  90.  ///  Bram Moolenaar -- Bram@moolenaar.net -- http://www.moolenaar.net  \\\
  91. ///   Creator of Vim -- http://vim.sf.net -- ftp://ftp.vim.org/pub/vim   \\\
  92. \\\           Project leader for A-A-P -- http://www.a-a-p.org           ///
  93.  \\\  Help me helping AIDS orphans in Uganda - http://iccf-holland.org  ///
  94.