From 9264f4cbbb32a1fba27cd2e1f2206554d13529ba Mon Sep 17 00:00:00 2001 From: James McCoy Date: Mon, 2 Jan 2017 07:05:59 -0500 Subject: Mark 'execute()' patches applied vim-patch:7.4.1996 Problem: Capturing the output of a command takes a few commands. Solution: Add evalcmd(). https://github.com/vim/vim/commit/1e5e1231ac9e1ba9678812c96f9d554a078eeec4 vim-patch:7.4.1999 Problem: evalcmd() doesn't work recursively. Solution: Use redir_evalcmd instead of redir_vname. https://github.com/vim/vim/commit/bc5d6dd1dd1dc3a06e4e655fc9479529db288365 vim-patch:7.4.2000 Problem: Evalcmd test fails. Solution: Add missing piece. https://github.com/vim/vim/commit/245a7cb6d33e556415c9fcaa874b784a6d8f0ef3 vim-patch:7.4.2005 Problem: After using evalcmd() message output is in the wrong position. (Christian Brabandt) Solution: Reset msg_col. https://github.com/vim/vim/commit/ee1deb4a00f39f133558321ec535354497f490c8 --- src/nvim/version.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/nvim/version.c') diff --git a/src/nvim/version.c b/src/nvim/version.c index 5ebe03b7db..f6f984bc8b 100644 --- a/src/nvim/version.c +++ b/src/nvim/version.c @@ -435,16 +435,16 @@ static int included_patches[] = { // 2008, 2007, // 2006, - // 2005, + 2005, // 2004 NA // 2003 NA // 2002, // 2001 NA - // 2000, - // 1999, + 2000, + 1999, // 1998 NA 1997, - // 1996, + 1996, // 1995 NA // 1994, // 1993, -- cgit