# HG changeset patch # User Christian Brabandt # Date 1449151205 -3600 # Node ID 32efe489afc5557521bdde41fc8849801fa4d8d7 # Parent 393313da30574657f3dd41a092ebcd2c937da4f0 commit https://github.com/vim/vim/commit/4649ded2877508fe343cbcf6f7e7fd277be0aab3 Author: Bram Moolenaar Date: Thu Dec 3 14:55:55 2015 +0100 patch 7.4.950 Problem: v:errors is not initialized. Solution: Initialze it to an empty list. (Thinca) diff --git a/src/eval.c b/src/eval.c --- a/src/eval.c +++ b/src/eval.c @@ -900,6 +900,7 @@ eval_init() set_vim_var_nr(VV_SEARCHFORWARD, 1L); set_vim_var_nr(VV_HLSEARCH, 1L); set_vim_var_dict(VV_COMPLETED_ITEM, dict_alloc()); + set_vim_var_list(VV_ERRORS, list_alloc()); set_reg_var(0); /* default for v:register is not 0 but '"' */ #ifdef EBCDIC diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -742,6 +742,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 950, +/**/ 949, /**/ 948,