aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorwatiko <service@mail.watiko.net>2015-12-13 22:27:35 +0900
committerwatiko <service@mail.watiko.net>2016-01-10 09:01:30 +0900
commit47fac915f3a994f11cf94f1ada47b50e078615fc (patch)
treef1b53729804d95e048b77bce37090f45e513d640
parent588b09277bb003f51b0f5c8ba5eef4ddd6239209 (diff)
downloadrneovim-47fac915f3a994f11cf94f1ada47b50e078615fc.tar.gz
rneovim-47fac915f3a994f11cf94f1ada47b50e078615fc.tar.bz2
rneovim-47fac915f3a994f11cf94f1ada47b50e078615fc.zip
vim-patch:7.4.950
Problem: v:errors is not initialized. Solution: Initialze it to an empty list. (Thinca) https://github.com/vim/vim/commit/4649ded2877508fe343cbcf6f7e7fd277be0aab3
-rw-r--r--src/nvim/eval.c1
-rw-r--r--src/nvim/version.c2
2 files changed, 2 insertions, 1 deletions
diff --git a/src/nvim/eval.c b/src/nvim/eval.c
index d5a4765f92..22d3e7c91a 100644
--- a/src/nvim/eval.c
+++ b/src/nvim/eval.c
@@ -545,6 +545,7 @@ void eval_init(void)
set_vim_var_dict(VV_MSGPACK_TYPES, msgpack_types_dict);
set_vim_var_dict(VV_COMPLETED_ITEM, dict_alloc());
+ set_vim_var_list(VV_ERRORS, list_alloc());
set_vim_var_nr(VV_SEARCHFORWARD, 1L);
set_vim_var_nr(VV_HLSEARCH, 1L);
set_reg_var(0); /* default for v:register is not 0 but '"' */
diff --git a/src/nvim/version.c b/src/nvim/version.c
index 4ea9c5bda3..3f87517f47 100644
--- a/src/nvim/version.c
+++ b/src/nvim/version.c
@@ -119,7 +119,7 @@ static int included_patches[] = {
// 953,
// 952,
// 951,
- // 950,
+ 950,
// 949,
// 948 NA
// 947,