diff options
author | James McCoy <jamessan@jamessan.com> | 2016-11-15 16:53:07 -0500 |
---|---|---|
committer | James McCoy <jamessan@jamessan.com> | 2016-12-28 14:57:39 -0500 |
commit | 03ed7e1ebaf7f0934b176c71949a77a3fe2291fb (patch) | |
tree | 2765f93413fb968cdb697b290ee645fc64f759f8 /src/nvim/version.c | |
parent | c4c894b2fada371c424e55d26174110b9069b5f8 (diff) | |
download | rneovim-03ed7e1ebaf7f0934b176c71949a77a3fe2291fb.tar.gz rneovim-03ed7e1ebaf7f0934b176c71949a77a3fe2291fb.tar.bz2 rneovim-03ed7e1ebaf7f0934b176c71949a77a3fe2291fb.zip |
vim-patch:7.4.2272
Problem: getbufinfo(), getwininfo() and gettabinfo() are inefficient.
Solution: Instead of making a copy of the variables dictionary, use a
reference.
https://github.com/vim/vim/commit/9f8187c335b4fb07be9095dfdd0fc52670ba3c3f
Diffstat (limited to 'src/nvim/version.c')
-rw-r--r-- | src/nvim/version.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/version.c b/src/nvim/version.c index 21fa7253ba..4ad4c82928 100644 --- a/src/nvim/version.c +++ b/src/nvim/version.c @@ -168,7 +168,7 @@ static int included_patches[] = { // 2275, 2274, // 2273, - // 2272, + 2272, // 2271 NA // 2270 NA // 2269, |