patch 7.4.2048
Problem: There is still code and help for unsupported systems.
Solution: Remove the code and text. (Hirohito Higashi)
diff --git a/src/main.c b/src/main.c
index 26941bd..5c3e9f9 100644
--- a/src/main.c
+++ b/src/main.c
@@ -75,7 +75,7 @@
char_u *serverStrEnc; /* encoding of serverStr */
char_u *servername; /* allocated name for our server */
#endif
-#if !defined(UNIX) && !defined(__EMX__)
+#if !defined(UNIX)
# define EXPAND_FILENAMES
int literal; /* don't expand file names */
#endif
@@ -183,7 +183,7 @@
#if defined(WIN32) && defined(FEAT_MBYTE)
/*
- * MingW expands command line arguments, which confuses our code to
+ * MinGW expands command line arguments, which confuses our code to
* convert when 'encoding' changes. Get the unexpanded arguments.
*/
argc = get_cmd_argsW(&argv);
@@ -231,10 +231,6 @@
#endif
starttime = time(NULL);
-#ifdef __EMX__
- _wildcard(¶ms.argc, ¶ms.argv);
-#endif
-
#ifdef FEAT_MBYTE
(void)mb_init(); /* init mb_bytelen_tab[] to ones */
#endif
@@ -3216,7 +3212,7 @@
int n, /* one of the ME_ defines */
char_u *str) /* extra argument or NULL */
{
-#if defined(UNIX) || defined(__EMX__) || defined(VMS)
+#if defined(UNIX) || defined(VMS)
reset_signals(); /* kill us with CTRL-C here, if you like */
#endif
@@ -3269,7 +3265,7 @@
#endif
};
-#if defined(UNIX) || defined(__EMX__) || defined(VMS)
+#if defined(UNIX) || defined(VMS)
reset_signals(); /* kill us with CTRL-C here, if you like */
#endif