diff options
author | Florian Walch <florian@fwalch.com> | 2014-12-23 14:35:59 +0100 |
---|---|---|
committer | Florian Walch <florian@fwalch.com> | 2014-12-23 21:15:31 +0100 |
commit | 2ba50a7846290ef399033a8ca34cbf60ef7a6b4e (patch) | |
tree | e4ab931cfb5eabdbe4e01a0184bfbd433ba61f41 /src/nvim/version.c | |
parent | 4f6bb8a9a997aacbe9f9f1ca83e7e4c502bdc03c (diff) | |
download | rneovim-2ba50a7846290ef399033a8ca34cbf60ef7a6b4e.tar.gz rneovim-2ba50a7846290ef399033a8ca34cbf60ef7a6b4e.tar.bz2 rneovim-2ba50a7846290ef399033a8ca34cbf60ef7a6b4e.zip |
vim-patch:7.4.499
Problem: substitute() can be slow with long strings.
Solution: Store a pointer to the end, instead of calling strlen() every
time. (Ozaki Kiichi)
https://code.google.com/p/vim/source/detail?r=v7-4-499
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 2b099fba11..0c2d831433 100644 --- a/src/nvim/version.c +++ b/src/nvim/version.c @@ -239,7 +239,7 @@ static int included_patches[] = { //502, //501 NA //500, - //499, + 499, //498 NA //497, //496 NA |