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.215 < prev    next >
Encoding:
Internet Message Format  |  2002-10-10  |  1.5 KB

  1. To: vim-dev@vim.org
  2. Subject: Patch 6.1.215
  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.215
  11. Problem:    Win32: ":pwd" uses backslashes even when 'shellslash' is set.
  12.         (Xiangjiang Ma)
  13. Solution:   Adjust backslashes before printing the message.
  14. Files:        src/ex_docmd.c
  15.  
  16.  
  17. *** ../vim61.214/src/ex_docmd.c    Mon Oct  7 21:35:49 2002
  18. --- src/ex_docmd.c    Fri Oct 11 20:34:46 2002
  19. ***************
  20. *** 6083,6089 ****
  21. --- 6083,6094 ----
  22.       exarg_T    *eap;
  23.   {
  24.       if (mch_dirname(NameBuff, MAXPATHL) == OK)
  25. +     {
  26. + #ifdef BACKSLASH_IN_FILENAME
  27. +     slash_adjust(NameBuff);
  28. + #endif
  29.       msg(NameBuff);
  30. +     }
  31.       else
  32.       EMSG(_("E187: Unknown"));
  33.   }
  34. *** ../vim61.214/src/version.c    Fri Oct 11 15:35:32 2002
  35. --- src/version.c    Fri Oct 11 20:36:39 2002
  36. ***************
  37. *** 608,609 ****
  38. --- 608,611 ----
  39.   {   /* Add new patch number below this line */
  40. + /**/
  41. +     215,
  42.   /**/
  43.  
  44. -- 
  45. Some of the well know MS-Windows errors:
  46.     EMEMORY        Memory error caused by..., eh...
  47.     ELICENSE    Your license has expired, give us more money!
  48.     EMOUSE        Mouse moved, reinstall Windows
  49.     EILLEGAL    Illegal error, you are not allowed to see this
  50.     EVIRUS        Undetectable virus found
  51.  
  52.  ///  Bram Moolenaar -- Bram@moolenaar.net -- http://www.moolenaar.net  \\\
  53. ///          Creator of Vim - Vi IMproved -- http://www.vim.org          \\\
  54. \\\           Project leader for A-A-P -- http://www.a-a-p.org           ///
  55.  \\\ Lord Of The Rings helps Uganda - http://iccf-holland.org/lotr.html ///
  56.