patch 7.4.1399
Problem: The MS-DOS code does not build.
Solution: Remove the old MS-DOS code.
diff --git a/src/vim.h b/src/vim.h
index 7a7a758..4156671 100644
--- a/src/vim.h
+++ b/src/vim.h
@@ -27,8 +27,7 @@
# endif
#endif
-#if defined(MSDOS) || defined(WIN32) || defined(_WIN64) \
- || defined(__EMX__)
+#if defined(WIN32) || defined(_WIN64) || defined(__EMX__)
# include "vimio.h"
#endif
@@ -164,21 +163,6 @@
#ifdef WIN3264
# define VIM_SIZEOF_INT 4
#endif
-#ifdef MSDOS
-# ifdef DJGPP
-# ifndef FEAT_GUI_GTK /* avoid problems when generating prototypes */
-# define VIM_SIZEOF_INT 4 /* 32 bit ints */
-# endif
-# define DOS32
-# define FEAT_CLIPBOARD
-# else
-# ifndef FEAT_GUI_GTK /* avoid problems when generating prototypes */
-# define VIM_SIZEOF_INT 2 /* 16 bit ints */
-# endif
-# define SMALL_MALLOC /* 16 bit storage allocation */
-# define DOS16
-# endif
-#endif
#ifdef AMIGA
/* Be conservative about sizeof(int). It could be 4 too. */
@@ -303,10 +287,6 @@
# include "os_amiga.h"
#endif
-#ifdef MSDOS
-# include "os_msdos.h"
-#endif
-
#ifdef WIN3264
# include "os_win32.h"
#endif
@@ -462,11 +442,11 @@
#ifdef _DCC
# include <sys/stat.h>
#endif
-#if defined(MSDOS) || defined(MSWIN)
+#if defined(MSWIN)
# include <sys/stat.h>
#endif
-#if defined(HAVE_ERRNO_H) || defined(DJGPP) \
+#if defined(HAVE_ERRNO_H) \
|| defined(WIN32) || defined(_WIN64) || defined(__EMX__)
# include <errno.h>
#endif