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

@@ -3294,16 +3294,6 @@ set_init_1(void)
}
}
#ifdef FEAT_GUI_W32
/* force 'shortname' for Win32s */
if (gui_is_win32s())
{
opt_idx = findoption((char_u *)"shortname");
if (opt_idx >= 0)
options[opt_idx].def_val[VI_DEFAULT] = (char_u *)TRUE;
}
#endif
#ifdef FEAT_SEARCHPATH
{
char_u *cdpath;