To: vim-dev@vim.org Subject: Patch 6.1.215 Fcc: outbox From: Bram Moolenaar Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit ------------ Patch 6.1.215 Problem: Win32: ":pwd" uses backslashes even when 'shellslash' is set. (Xiangjiang Ma) Solution: Adjust backslashes before printing the message. Files: src/ex_docmd.c *** ../vim61.214/src/ex_docmd.c Mon Oct 7 21:35:49 2002 --- src/ex_docmd.c Fri Oct 11 20:34:46 2002 *************** *** 6083,6089 **** --- 6083,6094 ---- exarg_T *eap; { if (mch_dirname(NameBuff, MAXPATHL) == OK) + { + #ifdef BACKSLASH_IN_FILENAME + slash_adjust(NameBuff); + #endif msg(NameBuff); + } else EMSG(_("E187: Unknown")); } *** ../vim61.214/src/version.c Fri Oct 11 15:35:32 2002 --- src/version.c Fri Oct 11 20:36:39 2002 *************** *** 608,609 **** --- 608,611 ---- { /* Add new patch number below this line */ + /**/ + 215, /**/ -- Some of the well know MS-Windows errors: EMEMORY Memory error caused by..., eh... ELICENSE Your license has expired, give us more money! EMOUSE Mouse moved, reinstall Windows EILLEGAL Illegal error, you are not allowed to see this EVIRUS Undetectable virus found /// Bram Moolenaar -- Bram@moolenaar.net -- http://www.moolenaar.net \\\ /// Creator of Vim - Vi IMproved -- http://www.vim.org \\\ \\\ Project leader for A-A-P -- http://www.a-a-p.org /// \\\ Lord Of The Rings helps Uganda - http://iccf-holland.org/lotr.html ///