summaryrefslogtreecommitdiffstats
path: root/src/feature.h
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2016-02-20 13:55:06 +0100
committerBram Moolenaar <Bram@vim.org>2016-02-20 13:55:06 +0100
commitcf7164a088664961e7d70dd100c5874dc5ceb293 (patch)
tree93cf8f7643786a9cb9488852b73c1ef480031ee1 /src/feature.h
parent065bbac8adfe29a09958570237d223457f235c6c (diff)
patch 7.4.1364v7.4.1364
Problem: The Win 16 code is not maintained and unused. Solution: Remove the Win 16 support.
Diffstat (limited to 'src/feature.h')
-rw-r--r--src/feature.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/feature.h b/src/feature.h
index ca01b064ca..d7679e090c 100644
--- a/src/feature.h
+++ b/src/feature.h
@@ -320,7 +320,7 @@
*
* Disabled for EBCDIC as it requires multibyte.
*/
-#if defined(FEAT_BIG) && !defined(WIN16) && VIM_SIZEOF_INT >= 4 && !defined(EBCDIC)
+#if defined(FEAT_BIG) && VIM_SIZEOF_INT >= 4 && !defined(EBCDIC)
# define FEAT_ARABIC
#endif
#ifdef FEAT_ARABIC
@@ -624,8 +624,7 @@
* Multibyte support doesn't work on z/OS Unix currently.
*/
#if (defined(FEAT_NORMAL) || defined(FEAT_GUI_GTK) || defined(FEAT_ARABIC)) \
- && !defined(FEAT_MBYTE) && !defined(WIN16) \
- && VIM_SIZEOF_INT >= 4 && !defined(EBCDIC)
+ && !defined(FEAT_MBYTE) && VIM_SIZEOF_INT >= 4 && !defined(EBCDIC)
# define FEAT_MBYTE
#endif
@@ -763,7 +762,7 @@
&& (defined(FEAT_GUI_GTK) \
|| (defined(FEAT_GUI_MOTIF) && defined(HAVE_XM_NOTEBOOK_H)) \
|| defined(FEAT_GUI_MAC) \
- || (defined(FEAT_GUI_MSWIN) && !defined(WIN16) \
+ || (defined(FEAT_GUI_MSWIN) \
&& (!defined(_MSC_VER) || _MSC_VER > 1020)))
# define FEAT_GUI_TABLINE
#endif