comparison src/globals.h @ 9515:bb538c090668 v7.4.2038

commit https://github.com/vim/vim/commit/9280e3f95d065733f04fa22869e5ef071d531931 Author: Bram Moolenaar <Bram@vim.org> Date: Thu Jul 14 23:03:19 2016 +0200 patch 7.4.2038 Problem: Small build still fails. Solution: Adjust more #ifdefs.
author Christian Brabandt <cb@256bit.org>
date Thu, 14 Jul 2016 23:15:05 +0200
parents 7520696c14b0
children b2aada04d84e
comparison
equal deleted inserted replaced
9514:265114df6a8c 9515:bb538c090668
323 323
324 /* ID of script being sourced or was sourced to define the current function. */ 324 /* ID of script being sourced or was sourced to define the current function. */
325 EXTERN scid_T current_SID INIT(= 0); 325 EXTERN scid_T current_SID INIT(= 0);
326 #endif 326 #endif
327 327
328 #if defined(FEAT_EVAL) || defined(FEAT_SYN_HL)
329 /* Magic number used for hashitem "hi_key" value indicating a deleted item. 328 /* Magic number used for hashitem "hi_key" value indicating a deleted item.
330 * Only the address is used. */ 329 * Only the address is used. */
331 EXTERN char_u hash_removed; 330 EXTERN char_u hash_removed;
332 #endif
333 331
334 332
335 EXTERN int scroll_region INIT(= FALSE); /* term supports scroll region */ 333 EXTERN int scroll_region INIT(= FALSE); /* term supports scroll region */
336 EXTERN int t_colors INIT(= 0); /* int value of T_CCO */ 334 EXTERN int t_colors INIT(= 0); /* int value of T_CCO */
337 335