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:
@@ -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;
|
||||
|
Reference in New Issue
Block a user