summaryrefslogtreecommitdiff
path: root/src/uninstal.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2010-08-08 16:38:42 +0200
committerBram Moolenaar <Bram@vim.org>2010-08-08 16:38:42 +0200
commit09092155a66388bbd7be8d16debb35abfcfae700 (patch)
tree4cbe7f4f0d5c763405f721f7f5dba08864e53ef3 /src/uninstal.c
parent83687a72155c70c062c689a9c545b5cdf5ebd0b4 (diff)
downloadvim-git-09092155a66388bbd7be8d16debb35abfcfae700.tar.gz
Remove unused code.
Diffstat (limited to 'src/uninstal.c')
-rw-r--r--src/uninstal.c24
1 files changed, 0 insertions, 24 deletions
diff --git a/src/uninstal.c b/src/uninstal.c
index 99cdc679c..0532eb9f3 100644
--- a/src/uninstal.c
+++ b/src/uninstal.c
@@ -286,30 +286,6 @@ remove_start_menu(void)
}
#endif
-#if 0 /* currently not used */
-/*
- * Return TRUE when we're on Windows 95/98/ME.
- */
- static int
-win95(void)
-{
- static int done = FALSE;
- static DWORD PlatformId;
-
- if (!done)
- {
- OSVERSIONINFO ovi;
-
- ovi.dwOSVersionInfoSize = sizeof(ovi);
- GetVersionEx(&ovi);
- PlatformId = ovi.dwPlatformId;
- done = TRUE;
- }
- /* Win NT/2000/XP is VER_PLATFORM_WIN32_NT */
- return PlatformId == VER_PLATFORM_WIN32_WINDOWS;
-}
-#endif
-
static void
delete_uninstall_key(void)
{