# HG changeset patch # User Christian Brabandt # Date 1502544604 -7200 # Node ID 903cea6f627c989f3208fecbc700f1fcc9757564 # Parent 8acb0519330f3410f02ad1cc8d8a9f0e5cef920a patch 8.0.0915: wrong initialisation of global commit https://github.com/vim/vim/commit/7eedd4398aee195212bd06004d3533ca24c0823c Author: Bram Moolenaar 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(). diff --git a/src/globals.h b/src/globals.h --- a/src/globals.h +++ b/src/globals.h @@ -1672,7 +1672,7 @@ EXTERN int *eval_lavars_used INIT(= NULL #endif #ifdef WIN3264 -EXTERN int ctrl_break_was_pressed = FALSE; +EXTERN int ctrl_break_was_pressed INIT(= FALSE); #endif /* diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -770,6 +770,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 915, +/**/ 914, /**/ 913,