diff src/os_mswin.c @ 1936:85a99ba3eb5a v7.2.233

updated for version 7.2-233
author vimboss
date Tue, 14 Jul 2009 16:38:36 +0000
parents 09f00d57222b
children cccb71c2c5c1
line wrap: on
line diff
--- 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