diff options
author | Bram Moolenaar <Bram@vim.org> | 2016-02-23 14:53:34 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2016-02-23 14:53:34 +0100 |
commit | 48e330aff911be1c798c88a973af6437a8141fce (patch) | |
tree | 4945b46753c6220ae5e8cd406d139e5640bd39c4 /src/window.c | |
parent | 4e221c99e85ed40c98892068a01270b9e7492d98 (diff) | |
download | vim-git-48e330aff911be1c798c88a973af6437a8141fce.tar.gz |
patch 7.4.1399v7.4.1399
Problem: The MS-DOS code does not build.
Solution: Remove the old MS-DOS code.
Diffstat (limited to 'src/window.c')
-rw-r--r-- | src/window.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/window.c b/src/window.c index ae17660bf..ee69921ff 100644 --- a/src/window.c +++ b/src/window.c @@ -6438,7 +6438,7 @@ vim_FullName( /* something failed; use the file name (truncate when too long) */ vim_strncpy(buf, fname, len - 1); } -#if defined(MACOS_CLASSIC) || defined(MSDOS) || defined(MSWIN) +#if defined(MACOS_CLASSIC) || defined(MSWIN) slash_adjust(buf); #endif return retval; |