summaryrefslogtreecommitdiff
path: root/src/os_mswin.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2009-07-14 16:38:36 +0000
committerBram Moolenaar <Bram@vim.org>2009-07-14 16:38:36 +0000
commita2974d70f14efecb7d8543659f90935eb89963db (patch)
tree4233f17fda1b945925f0d35dd05a62cf203996a1 /src/os_mswin.c
parent2572492ebad632ac0162b32961ce049c785cfd8c (diff)
downloadvim-git-a2974d70f14efecb7d8543659f90935eb89963db.tar.gz
updated for version 7.2-233v7.2.233
Diffstat (limited to 'src/os_mswin.c')
-rw-r--r--src/os_mswin.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/os_mswin.c b/src/os_mswin.c
index 94cf3a962..c3588e6f5 100644
--- a/src/os_mswin.c
+++ b/src/os_mswin.c
@@ -653,6 +653,12 @@ mch_chdir(char *path)
if (path[0] == NUL) /* just checking... */
return -1;
+ if (p_verbose >= 5)
+ {
+ verbose_enter();
+ smsg((char_u *)"chdir(%s)", path);
+ verbose_leave();
+ }
if (isalpha(path[0]) && path[1] == ':') /* has a drive name */
{
/* If we can change to the drive, skip that part of the path. If we