comparison src/vim.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 55ccc2d353bd
children 2ad5f0ffaa2e
comparison
equal deleted inserted replaced
15509:2650d9461407 15510:41fbbcea0f1b
284 # include "os_mac.h" 284 # include "os_mac.h"
285 #endif 285 #endif
286 286
287 #ifdef __QNX__ 287 #ifdef __QNX__
288 # include "os_qnx.h" 288 # include "os_qnx.h"
289 #endif
290
291 #ifdef FEAT_SUN_WORKSHOP
292 # include "workshop.h"
293 #endif 289 #endif
294 290
295 #ifdef X_LOCALE 291 #ifdef X_LOCALE
296 # include <X11/Xlocale.h> 292 # include <X11/Xlocale.h>
297 #else 293 #else
2234 # define vim_realloc(ptr, size) mem_realloc((ptr), (size)) 2230 # define vim_realloc(ptr, size) mem_realloc((ptr), (size))
2235 #else 2231 #else
2236 # define vim_realloc(ptr, size) realloc((ptr), (size)) 2232 # define vim_realloc(ptr, size) realloc((ptr), (size))
2237 #endif 2233 #endif
2238 2234
2239 /*
2240 * The following macros stop display/event loop nesting at the wrong time.
2241 */
2242 #ifdef ALT_X_INPUT
2243 # define ALT_INPUT_LOCK_OFF suppress_alternate_input = FALSE
2244 # define ALT_INPUT_LOCK_ON suppress_alternate_input = TRUE
2245 #endif
2246
2247 #ifdef FEAT_MBYTE 2235 #ifdef FEAT_MBYTE
2248 /* 2236 /*
2249 * Return byte length of character that starts with byte "b". 2237 * Return byte length of character that starts with byte "b".
2250 * Returns 1 for a single-byte character. 2238 * Returns 1 for a single-byte character.
2251 * MB_BYTE2LEN_CHECK() can be used to count a special key as one byte. 2239 * MB_BYTE2LEN_CHECK() can be used to count a special key as one byte.