diff options
author | James McCoy <jamessan@jamessan.com> | 2017-01-02 07:05:59 -0500 |
---|---|---|
committer | James McCoy <jamessan@jamessan.com> | 2017-01-02 07:11:02 -0500 |
commit | 9264f4cbbb32a1fba27cd2e1f2206554d13529ba (patch) | |
tree | 64eea0174427775a637fff78923c4b6a5e1c729c /src | |
parent | 5b8bdca564dda25f47e0c1e5fe7d96158ff74eb0 (diff) | |
download | rneovim-9264f4cbbb32a1fba27cd2e1f2206554d13529ba.tar.gz rneovim-9264f4cbbb32a1fba27cd2e1f2206554d13529ba.tar.bz2 rneovim-9264f4cbbb32a1fba27cd2e1f2206554d13529ba.zip |
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
Diffstat (limited to 'src')
-rw-r--r-- | src/nvim/version.c | 8 |
1 files changed, 4 insertions, 4 deletions
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, |