summaryrefslogtreecommitdiffstats
path: root/src/evalfunc.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2016-08-25 23:19:29 +0200
committerBram Moolenaar <Bram@vim.org>2016-08-25 23:19:29 +0200
commit78c7e274f27c68bf86b0a68411b128c6945d1f6a (patch)
tree1ac2c081619b2739978337846d72c6d5e88e9b28 /src/evalfunc.c
parent424d74bb20335940e938a5b4708fc0d6b73f0de3 (diff)
patch 7.4.2253v7.4.2253
Problem: Check for Windows 3.1 will always return false. (Christian Brabandt) Solution: Remove the dead code.
Diffstat (limited to 'src/evalfunc.c')
-rw-r--r--src/evalfunc.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/evalfunc.c b/src/evalfunc.c
index 1b54b7ead2..88392305e1 100644
--- a/src/evalfunc.c
+++ b/src/evalfunc.c
@@ -5989,10 +5989,6 @@ f_has(typval_T *argvars, typval_T *rettv)
#ifdef FEAT_GUI
else if (STRICMP(name, "gui_running") == 0)
n = (gui.in_use || gui.starting);
-# ifdef FEAT_GUI_W32
- else if (STRICMP(name, "gui_win32s") == 0)
- n = gui_is_win32s();
-# endif
# ifdef FEAT_BROWSE
else if (STRICMP(name, "browse") == 0)
n = gui.in_use; /* gui_mch_browse() works when GUI is running */