comparison src/globals.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 a8962f0e0d34
children 37e061ec063c
comparison
equal deleted inserted replaced
7407:829dfc144dd4 7408:1886f2863437
17 * They may have different values when the screen wasn't (re)allocated yet 17 * They may have different values when the screen wasn't (re)allocated yet
18 * after setting Rows or Columns (e.g., when starting up). 18 * after setting Rows or Columns (e.g., when starting up).
19 */ 19 */
20 EXTERN long Rows /* nr of rows in the screen */ 20 EXTERN long Rows /* nr of rows in the screen */
21 #ifdef DO_INIT 21 #ifdef DO_INIT
22 # if defined(MSDOS) || defined(WIN3264) || defined(OS2) 22 # if defined(MSDOS) || defined(WIN3264)
23 = 25L 23 = 25L
24 # else 24 # else
25 = 24L 25 = 24L
26 # endif 26 # endif
27 #endif 27 #endif
1532 #ifdef HAVE_SANDBOX 1532 #ifdef HAVE_SANDBOX
1533 EXTERN char_u e_sandbox[] INIT(= N_("E48: Not allowed in sandbox")); 1533 EXTERN char_u e_sandbox[] INIT(= N_("E48: Not allowed in sandbox"));
1534 #endif 1534 #endif
1535 EXTERN char_u e_secure[] INIT(= N_("E523: Not allowed here")); 1535 EXTERN char_u e_secure[] INIT(= N_("E523: Not allowed here"));
1536 #if defined(AMIGA) || defined(MACOS) || defined(MSWIN) \ 1536 #if defined(AMIGA) || defined(MACOS) || defined(MSWIN) \
1537 || defined(UNIX) || defined(VMS) || defined(OS2) 1537 || defined(UNIX) || defined(VMS)
1538 EXTERN char_u e_screenmode[] INIT(= N_("E359: Screen mode setting not supported")); 1538 EXTERN char_u e_screenmode[] INIT(= N_("E359: Screen mode setting not supported"));
1539 #endif 1539 #endif
1540 EXTERN char_u e_scroll[] INIT(= N_("E49: Invalid scroll size")); 1540 EXTERN char_u e_scroll[] INIT(= N_("E49: Invalid scroll size"));
1541 EXTERN char_u e_shellempty[] INIT(= N_("E91: 'shell' option is empty")); 1541 EXTERN char_u e_shellempty[] INIT(= N_("E91: 'shell' option is empty"));
1542 #if defined(FEAT_SIGN_ICONS) && !defined(FEAT_GUI_GTK) 1542 #if defined(FEAT_SIGN_ICONS) && !defined(FEAT_GUI_GTK)