commit | cea912af725c54f4727a0565e31661f6b29c6bb1 | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Wed Oct 12 14:20:24 2016 +0200 |
committer | Bram Moolenaar <Bram@vim.org> | Wed Oct 12 14:20:24 2016 +0200 |
tree | f48da16d68c229e22ff83fa31cc7337368875e3d | |
parent | a7c023ec88233a2db4c1f53121921e110ece8d43 [diff] [blame] |
patch 8.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)
diff --git a/src/misc1.c b/src/misc1.c index 79014cf..6bf7d75 100644 --- a/src/misc1.c +++ b/src/misc1.c
@@ -9450,10 +9450,7 @@ * screen (if there are two screens). */ settmode(TMODE_COOK); -#ifdef WIN3264 - if (can_end_termcap_mode(FALSE) == TRUE) -#endif - stoptermcap(); + stoptermcap(); out_flush(); } }