comparison src/feature.h @ 7408:1886f2863437 v7.4.1008

commit https://github.com/vim/vim/commit/e7fedb6ebe72d9a475aa65109b77d5ed4667067a Author: Bram Moolenaar <Bram@vim.org> Date: Thu Dec 31 19:07:19 2015 +0100 patch 7.4.1008 Problem: The OS/2 code pollutes the source while nobody uses it these days. Solution: Drop the support for OS/2.
author Christian Brabandt <cb@256bit.org>
date Thu, 31 Dec 2015 19:15:05 +0100
parents 2c00f6b312bf
children 6157052a0e58
comparison
equal deleted inserted replaced
7407:829dfc144dd4 7408:1886f2863437
58 * are supposed to have enough RAM: Win32 (console & GUI), dos32, OS/2 and VMS. 58 * are supposed to have enough RAM: Win32 (console & GUI), dos32, OS/2 and VMS.
59 * The dos16 version has very little RAM available, use +small. 59 * The dos16 version has very little RAM available, use +small.
60 */ 60 */
61 #if !defined(FEAT_TINY) && !defined(FEAT_SMALL) && !defined(FEAT_NORMAL) \ 61 #if !defined(FEAT_TINY) && !defined(FEAT_SMALL) && !defined(FEAT_NORMAL) \
62 && !defined(FEAT_BIG) && !defined(FEAT_HUGE) 62 && !defined(FEAT_BIG) && !defined(FEAT_HUGE)
63 # if defined(MSWIN) || defined(DJGPP) || defined(OS2) || defined(VMS) || defined(MACOS) || defined(AMIGA) 63 # if defined(MSWIN) || defined(DJGPP) || defined(VMS) || defined(MACOS) || defined(AMIGA)
64 # define FEAT_BIG 64 # define FEAT_BIG
65 # else 65 # else
66 # ifdef MSDOS 66 # ifdef MSDOS
67 # define FEAT_SMALL 67 # define FEAT_SMALL
68 # else 68 # else
1044 * console mouse handling. 1044 * console mouse handling.
1045 * +mouse_urxvt Unix only: Include code for for urxvt mosue handling. 1045 * +mouse_urxvt Unix only: Include code for for urxvt mosue handling.
1046 * +mouse Any mouse support (any of the above enabled). 1046 * +mouse Any mouse support (any of the above enabled).
1047 */ 1047 */
1048 /* OS/2 and Amiga console have no mouse support */ 1048 /* OS/2 and Amiga console have no mouse support */
1049 #if !defined(AMIGA) && !defined(OS2) 1049 #if !defined(AMIGA)
1050 # ifdef FEAT_NORMAL 1050 # ifdef FEAT_NORMAL
1051 # define FEAT_MOUSE_XTERM 1051 # define FEAT_MOUSE_XTERM
1052 # endif 1052 # endif
1053 # ifdef FEAT_BIG 1053 # ifdef FEAT_BIG
1054 # define FEAT_MOUSE_NET 1054 # define FEAT_MOUSE_NET