summaryrefslogtreecommitdiff
path: root/src/option.c
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/option.c
parent065bbac8adfe29a09958570237d223457f235c6c (diff)
downloadvim-git-cf7164a088664961e7d70dd100c5874dc5ceb293.tar.gz
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/option.c')
-rw-r--r--src/option.c10
1 files changed, 3 insertions, 7 deletions
diff --git a/src/option.c b/src/option.c
index 6554fcd01..6645cb2ef 100644
--- a/src/option.c
+++ b/src/option.c
@@ -2296,14 +2296,10 @@ static struct vimoption
# if defined(MSDOS)
(char_u *)"command",
# else
-# if defined(WIN16)
- (char_u *)"command.com",
-# else
-# if defined(WIN3264)
+# if defined(WIN3264)
(char_u *)"", /* set in set_init_1() */
-# else
+# else
(char_u *)"sh",
-# endif
# endif
# endif
#endif /* VMS */
@@ -2367,7 +2363,7 @@ static struct vimoption
{"shellxescape", "sxe", P_STRING|P_VI_DEF|P_SECURE,
(char_u *)&p_sxe, PV_NONE,
{
-#if defined(MSDOS) || defined(WIN16) || defined(WIN3264)
+#if defined(MSDOS) || defined(WIN3264)
(char_u *)"\"&|<>()@^",
#else
(char_u *)"",