diff options
author | oni-link <knil.ino@gmail.com> | 2014-05-22 13:13:00 +0200 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2014-06-06 18:39:31 -0400 |
commit | 37fe5aa44452d351b6c0ad6a4b2aa75f10540d22 (patch) | |
tree | 7257cb3409bbee0f1b37eb257b1afda1babc4520 /src/nvim/version.c | |
parent | 01ca4600bae9cd1aa5f0cfe4fc4294e7da0b4ee3 (diff) | |
download | rneovim-37fe5aa44452d351b6c0ad6a4b2aa75f10540d22.tar.gz rneovim-37fe5aa44452d351b6c0ad6a4b2aa75f10540d22.tar.bz2 rneovim-37fe5aa44452d351b6c0ad6a4b2aa75f10540d22.zip |
vim-patch:7.4.292 #754
Problem: Searching for "a" does not match accented "a" with new regexp
engine, does match with old engine. (David Bürgin)
"ca" does not match "ca" with accented "a" with either engine.
Solution: Change the old engine, check for following composing character
also for single-byte patterns.
https://code.google.com/p/vim/source/detail?r=60cdaa05a6ad31cef55eb6b3dc1f57ecac6fcf79
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 84165f021a..32dcfbe575 100644 --- a/src/nvim/version.c +++ b/src/nvim/version.c @@ -226,7 +226,7 @@ static int included_patches[] = { //295, //294, //293, - //292, + 292, //291, //290, 289, |