comparison src/globals.h @ 12070:903cea6f627c v8.0.0915

patch 8.0.0915: wrong initialisation of global commit https://github.com/vim/vim/commit/7eedd4398aee195212bd06004d3533ca24c0823c Author: Bram Moolenaar <Bram@vim.org> Date: Sat Aug 12 15:15:33 2017 +0200 patch 8.0.0915: wrong initialisation of global Problem: Wrong initialisation of global. Solution: Use INIT().
author Christian Brabandt <cb@256bit.org>
date Sat, 12 Aug 2017 15:30:04 +0200
parents 8ad282dee649
children f306e6decaf9
comparison
equal deleted inserted replaced
12069:8acb0519330f 12070:903cea6f627c
1670 /* Used for checking if local variables or arguments used in a lambda. */ 1670 /* Used for checking if local variables or arguments used in a lambda. */
1671 EXTERN int *eval_lavars_used INIT(= NULL); 1671 EXTERN int *eval_lavars_used INIT(= NULL);
1672 #endif 1672 #endif
1673 1673
1674 #ifdef WIN3264 1674 #ifdef WIN3264
1675 EXTERN int ctrl_break_was_pressed = FALSE; 1675 EXTERN int ctrl_break_was_pressed INIT(= FALSE);
1676 #endif 1676 #endif
1677 1677
1678 /* 1678 /*
1679 * Optional Farsi support. Include it here, so EXTERN and INIT are defined. 1679 * Optional Farsi support. Include it here, so EXTERN and INIT are defined.
1680 */ 1680 */