From 815fe2845015e61bb5aaf46b458b8fbc5a4218b3 Mon Sep 17 00:00:00 2001 From: Florian Walch Date: Thu, 18 Dec 2014 17:44:56 +0100 Subject: vim-patch:7.4.434 Problem: gettabvar() is not consistent with getwinvar() and getbufvar(). Solution: Return a dict with all variables when the varname is empty. (Yasuhiro Matsumoto) https://code.google.com/p/vim/source/detail?r=v7-4-434 --- src/nvim/version.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/nvim/version.c') diff --git a/src/nvim/version.c b/src/nvim/version.c index de4f6ffd87..0491afb614 100644 --- a/src/nvim/version.c +++ b/src/nvim/version.c @@ -295,7 +295,7 @@ static int included_patches[] = { 437, 436, 435, - //434, + 434, 433, //432 NA //431 NA -- cgit From 3f7b8199df130145143016536e3cc46fd8ef65ff Mon Sep 17 00:00:00 2001 From: Florian Walch Date: Thu, 18 Dec 2014 20:47:53 +0100 Subject: vim-patch:7.4.442 Problem: Using unitinialized variable. Solution: Pass the first window of the tabpage. https://code.google.com/p/vim/source/detail?r=v7-4-442 --- src/nvim/version.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/nvim/version.c') diff --git a/src/nvim/version.c b/src/nvim/version.c index 0491afb614..5ac070bce5 100644 --- a/src/nvim/version.c +++ b/src/nvim/version.c @@ -287,7 +287,7 @@ static int included_patches[] = { //445, 444, //443, - //442, + 442, //441, 440, 439, -- cgit