diff options
author | Bram Moolenaar <Bram@vim.org> | 2016-10-12 14:20:24 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2016-10-12 14:20:24 +0200 |
commit | cea912af725c54f4727a0565e31661f6b29c6bb1 (patch) | |
tree | f48da16d68c229e22ff83fa31cc7337368875e3d /src/option.c | |
parent | a7c023ec88233a2db4c1f53121921e110ece8d43 (diff) | |
download | vim-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/option.c')
-rw-r--r-- | src/option.c | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/src/option.c b/src/option.c index 2d5f3b83a..ecac17550 100644 --- a/src/option.c +++ b/src/option.c @@ -22,7 +22,7 @@ * - If it's a list of flags, add some code in do_set(), search for WW_ALL. * - When adding an option with expansion (P_EXPAND), but with a different * default for Vi and Vim (no P_VI_DEF), add some code at VIMEXP. - * - Add documentation! One line in doc/help.txt, full description in + * - Add documentation! One line in doc/quickref.txt, full description in * options.txt, and any other related places. * - Add an entry in runtime/optwin.vim. * When making changes: @@ -9944,13 +9944,7 @@ clear_termoptions(void) if (gui.starting) clear_xterm_clip(); #endif -#ifdef WIN3264 - /* - * Check if this is allowed now. - */ - if (can_end_termcap_mode(FALSE) == TRUE) -#endif - stoptermcap(); /* stop termcap mode */ + stoptermcap(); /* stop termcap mode */ free_termoptions(); } |