commit | a2974d70f14efecb7d8543659f90935eb89963db | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Tue Jul 14 16:38:36 2009 +0000 |
committer | Bram Moolenaar <Bram@vim.org> | Tue Jul 14 16:38:36 2009 +0000 |
tree | 4233f17fda1b945925f0d35dd05a62cf203996a1 | |
parent | 2572492ebad632ac0162b32961ce049c785cfd8c [diff] [blame] |
updated for version 7.2-233
diff --git a/src/os_msdos.c b/src/os_msdos.c index 6748e6a..0df20c7 100644 --- a/src/os_msdos.c +++ b/src/os_msdos.c
@@ -2039,6 +2039,12 @@ { if (path[0] == NUL) /* just checking... */ return 0; + if (p_verbose >= 5) + { + verbose_enter(); + smsg((char_u *)"chdir(%s)", path); + verbose_leave(); + } if (path[1] == ':') /* has a drive name */ { if (change_drive(TOLOWER_ASC(path[0]) - 'a' + 1))