summaryrefslogtreecommitdiff
path: root/src/misc1.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2016-10-12 14:20:24 +0200
committerBram Moolenaar <Bram@vim.org>2016-10-12 14:20:24 +0200
commitcea912af725c54f4727a0565e31661f6b29c6bb1 (patch)
treef48da16d68c229e22ff83fa31cc7337368875e3d /src/misc1.c
parenta7c023ec88233a2db4c1f53121921e110ece8d43 (diff)
downloadvim-git-cea912af725c54f4727a0565e31661f6b29c6bb1.tar.gz
patch 8.0.0029v8.0.0029
Problem: Code for MS-Windows is complicated because of the exceptions for old systems. Solution: Drop support for MS-Windows older than Windows XP. (Ken Takata)
Diffstat (limited to 'src/misc1.c')
-rw-r--r--src/misc1.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/misc1.c b/src/misc1.c
index 79014cf29..6bf7d7577 100644
--- a/src/misc1.c
+++ b/src/misc1.c
@@ -9450,10 +9450,7 @@ prepare_to_exit(void)
* screen (if there are two screens).
*/
settmode(TMODE_COOK);
-#ifdef WIN3264
- if (can_end_termcap_mode(FALSE) == TRUE)
-#endif
- stoptermcap();
+ stoptermcap();
out_flush();
}
}