comparison src/globals.h @ 15510:41fbbcea0f1b v8.1.0763

patch 8.1.0763: nobody is using the Sun Workshop support commit https://github.com/vim/vim/commit/bb1969b6ab28120c93b77817e7b6075e1aecf663 Author: Bram Moolenaar <Bram@vim.org> Date: Thu Jan 17 15:45:25 2019 +0100 patch 8.1.0763: nobody is using the Sun Workshop support Problem: Nobody is using the Sun Workshop support. Solution: Remove the Workshop support.
author Bram Moolenaar <Bram@vim.org>
date Thu, 17 Jan 2019 16:00:08 +0100
parents bc17a9d37810
children dd725a8ab112
comparison
equal deleted inserted replaced
15509:2650d9461407 15510:41fbbcea0f1b
1216 #endif 1216 #endif
1217 1217
1218 #if defined(FEAT_BEVAL) && !defined(NO_X11_INCLUDES) 1218 #if defined(FEAT_BEVAL) && !defined(NO_X11_INCLUDES)
1219 EXTERN BalloonEval *balloonEval INIT(= NULL); 1219 EXTERN BalloonEval *balloonEval INIT(= NULL);
1220 EXTERN int balloonEvalForTerm INIT(= FALSE); 1220 EXTERN int balloonEvalForTerm INIT(= FALSE);
1221 # if defined(FEAT_NETBEANS_INTG) || defined(FEAT_SUN_WORKSHOP) 1221 # if defined(FEAT_NETBEANS_INTG)
1222 EXTERN int bevalServers INIT(= 0); 1222 EXTERN int bevalServers INIT(= 0);
1223 # define BEVAL_NETBEANS 0x01 1223 # define BEVAL_NETBEANS 0x01
1224 # define BEVAL_WORKSHOP 0x02
1225 # endif 1224 # endif
1226 #endif 1225 #endif
1227 1226
1228 #ifdef CURSOR_SHAPE 1227 #ifdef CURSOR_SHAPE
1229 /* the table is in misc2.c, because of initializations */ 1228 /* the table is in misc2.c, because of initializations */
1361 #ifdef FEAT_CONCEAL 1360 #ifdef FEAT_CONCEAL
1362 /* Set when the cursor line needs to be redrawn. */ 1361 /* Set when the cursor line needs to be redrawn. */
1363 EXTERN int need_cursor_line_redraw INIT(= FALSE); 1362 EXTERN int need_cursor_line_redraw INIT(= FALSE);
1364 #endif 1363 #endif
1365 1364
1366 #ifdef ALT_X_INPUT
1367 /* we need to be able to go into the dispatch loop while processing a command
1368 * received via alternate input. However, we don't want to process another
1369 * command until the first is completed.
1370 */
1371 EXTERN int suppress_alternate_input INIT(= FALSE);
1372 #endif
1373
1374 #ifdef USE_MCH_ERRMSG 1365 #ifdef USE_MCH_ERRMSG
1375 /* Grow array to collect error messages in until they can be displayed. */ 1366 /* Grow array to collect error messages in until they can be displayed. */
1376 EXTERN garray_T error_ga 1367 EXTERN garray_T error_ga
1377 # ifdef DO_INIT 1368 # ifdef DO_INIT
1378 = {0, 0, 0, 0, NULL} 1369 = {0, 0, 0, 0, NULL}