summaryrefslogtreecommitdiffstats
path: root/src/feature.h
diff options
context:
space:
mode:
authorK.Takata <kentkt@csc.jp>2022-01-24 11:24:08 +0000
committerBram Moolenaar <Bram@vim.org>2022-01-24 11:24:08 +0000
commitc351dc1e0ca959084ba36bb350291334bf74b9f8 (patch)
tree2f8979a19950eadb42d7d3cc61f725bd90ad33d6 /src/feature.h
parent058ee7c5699ef551be5aa04c66b3cffc436e9b08 (diff)
patch 8.2.4199: MS-Windows: Support for MSVC 2003 is not usefulv8.2.4199
Problem: MS-Windows: Support for MSVC 2003 is not useful. Solution: Remove the exceptions for MSVC 2003. (Ken Takata, closes #9616)
Diffstat (limited to 'src/feature.h')
-rw-r--r--src/feature.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/feature.h b/src/feature.h
index b2df6f9a5c..ace02eb6eb 100644
--- a/src/feature.h
+++ b/src/feature.h
@@ -629,8 +629,7 @@
&& (defined(FEAT_GUI_GTK) \
|| (defined(FEAT_GUI_MOTIF) && defined(HAVE_XM_NOTEBOOK_H)) \
|| defined(FEAT_GUI_HAIKU) \
- || (defined(FEAT_GUI_MSWIN) \
- && (!defined(_MSC_VER) || _MSC_VER > 1020)))
+ || defined(FEAT_GUI_MSWIN))
# define FEAT_GUI_TABLINE
#endif