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/feature.h | |
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/feature.h')
-rw-r--r-- | src/feature.h | 15 |
1 files changed, 5 insertions, 10 deletions
diff --git a/src/feature.h b/src/feature.h index ab0ec5aaf..4150f07b5 100644 --- a/src/feature.h +++ b/src/feature.h @@ -65,14 +65,10 @@ # if defined(UNIX) || defined(WIN3264) || defined(MACOS) # define FEAT_HUGE # else -# if defined(MSWIN) || defined(DJGPP) || defined(VMS) || defined(MACOS) || defined(AMIGA) +# if defined(MSWIN) || defined(VMS) || defined(MACOS) || defined(AMIGA) # define FEAT_BIG # else -# ifdef MSDOS -# define FEAT_SMALL -# else -# define FEAT_NORMAL -# endif +# define FEAT_NORMAL # endif # endif #endif @@ -467,7 +463,7 @@ * and byte2line(). * Note: Required for Macintosh. */ -#if defined(FEAT_NORMAL) && !defined(MSDOS) +#if defined(FEAT_NORMAL) # define FEAT_TITLE #endif @@ -541,7 +537,6 @@ * with HAVE_TGETENT defined). * * (nothing) Machine specific termcap entries will be included. - * This is default for win16 to save static data. * * SOME_BUILTIN_TCAPS Include most useful builtin termcap entries (used only * with NO_BUILTIN_TCAPS not defined). @@ -1060,7 +1055,7 @@ # ifdef FEAT_BIG # define FEAT_MOUSE_SGR # endif -# if defined(FEAT_NORMAL) && (defined(MSDOS) || defined(WIN3264)) +# if defined(FEAT_NORMAL) && defined(WIN3264) # define DOS_MOUSE # endif # if defined(FEAT_NORMAL) && defined(__QNX__) @@ -1176,7 +1171,7 @@ */ #ifdef FEAT_NORMAL /* MS-DOS console and Win32 console can change cursor shape */ -# if defined(MSDOS) || (defined(WIN3264) && !defined(FEAT_GUI_W32)) +# if defined(WIN3264) && !defined(FEAT_GUI_W32) # define MCH_CURSOR_SHAPE # endif # if defined(FEAT_GUI_W32) || defined(FEAT_GUI_MOTIF) \ |