1
0
forked from aniani/vim

patch 7.4.2253

Problem:    Check for Windows 3.1 will always return false.  (Christian
            Brabandt)
Solution:   Remove the dead code.
This commit is contained in:
Bram Moolenaar
2016-08-25 23:19:29 +02:00
parent 424d74bb20
commit 78c7e274f2
7 changed files with 3 additions and 32 deletions

View File

@@ -2062,7 +2062,6 @@ mch_init(void)
Columns = 80;
/* Look for 'vimrun' */
if (!gui_is_win32s())
{
char_u vimrun_location[_MAX_PATH + 4];
@@ -4142,7 +4141,7 @@ mch_system_classic(char *cmd, int options)
* Win32s either as it stops the synchronous spawn workaround working.
* Don't activate the window to keep focus on Vim.
*/
if ((options & SHELL_DOOUT) && !mch_windows95() && !gui_is_win32s())
if ((options & SHELL_DOOUT) && !mch_windows95())
si.wShowWindow = SW_SHOWMINNOACTIVE;
else
si.wShowWindow = SW_SHOWNORMAL;