comparison src/evalfunc.c @ 10264:c036c0f636d5 v8.0.0029

commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1 Author: Bram Moolenaar <Bram@vim.org> Date: Wed Oct 12 14:20:24 2016 +0200 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)
author Christian Brabandt <cb@256bit.org>
date Wed, 12 Oct 2016 14:30:05 +0200
parents d709622a18c9
children 154d5a2e7395
comparison
equal deleted inserted replaced
10263:b758a787983a 10264:c036c0f636d5
6015 else if (STRICMP(name, "syntax_items") == 0) 6015 else if (STRICMP(name, "syntax_items") == 0)
6016 n = syntax_present(curwin); 6016 n = syntax_present(curwin);
6017 #endif 6017 #endif
6018 #if defined(WIN3264) 6018 #if defined(WIN3264)
6019 else if (STRICMP(name, "win95") == 0) 6019 else if (STRICMP(name, "win95") == 0)
6020 n = mch_windows95(); 6020 n = FALSE; /* Win9x is no more supported. */
6021 #endif 6021 #endif
6022 #ifdef FEAT_NETBEANS_INTG 6022 #ifdef FEAT_NETBEANS_INTG
6023 else if (STRICMP(name, "netbeans_enabled") == 0) 6023 else if (STRICMP(name, "netbeans_enabled") == 0)
6024 n = netbeans_active(); 6024 n = netbeans_active();
6025 #endif 6025 #endif