diff options
author | Bram Moolenaar <Bram@vim.org> | 2016-02-20 22:17:05 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2016-02-20 22:17:05 +0100 |
commit | e89ff0472bc33779583d48e8d38a5e794d05613a (patch) | |
tree | cbd3bdeaf7114fb086a895bc3bf83e6619ea3346 /src/misc1.c | |
parent | af7559f66603075e9b4d39d873b2161ea3ec8492 (diff) | |
download | vim-git-e89ff0472bc33779583d48e8d38a5e794d05613a.tar.gz |
patch 7.4.1375v7.4.1375
Problem: Still some Win16 code.
Solution: Remove FEAT_GUI_W16.(Hirohito Higashi)
Diffstat (limited to 'src/misc1.c')
-rw-r--r-- | src/misc1.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/misc1.c b/src/misc1.c index 6f96f2f21..cb45a7237 100644 --- a/src/misc1.c +++ b/src/misc1.c @@ -9734,7 +9734,7 @@ static int vim_backtick(char_u *p); static int expand_backtick(garray_T *gap, char_u *pat, int flags); # endif -# if defined(MSDOS) || defined(FEAT_GUI_W16) || defined(WIN3264) +# if defined(MSDOS) || defined(WIN3264) /* * File name expansion code for MS-DOS, Win16 and Win32. It's here because * it's shared between these systems. @@ -10078,7 +10078,7 @@ mch_expandpath( { return dos_expandpath(gap, path, 0, flags, FALSE); } -# endif /* MSDOS || FEAT_GUI_W16 || WIN3264 */ +# endif /* MSDOS || WIN3264 */ #if (defined(UNIX) && !defined(VMS)) || defined(USE_UNIXFILENAME) \ || defined(PROTO) |