aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/regexp_nfa.c
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2019-10-06 18:52:38 -0700
committerGitHub <noreply@github.com>2019-10-06 18:52:38 -0700
commit23ba875b821c454e81093de83f7fd6555a4dd0c4 (patch)
tree3707321b4560e6d8b7d85d19a624ffdeaa374108 /src/nvim/regexp_nfa.c
parent8f20c50caa7fa008f5e6257ef0fc43620e3baeb1 (diff)
parent97cdfdcde24c6a804f879b6464512008db4b5cef (diff)
downloadrneovim-23ba875b821c454e81093de83f7fd6555a4dd0c4.tar.gz
rneovim-23ba875b821c454e81093de83f7fd6555a4dd0c4.tar.bz2
rneovim-23ba875b821c454e81093de83f7fd6555a4dd0c4.zip
Merge #11170 from janlazo/vim-8.1.2120
vim-patch:8.1.2120
Diffstat (limited to 'src/nvim/regexp_nfa.c')
-rw-r--r--src/nvim/regexp_nfa.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/regexp_nfa.c b/src/nvim/regexp_nfa.c
index 63640e723e..f33c61d39f 100644
--- a/src/nvim/regexp_nfa.c
+++ b/src/nvim/regexp_nfa.c
@@ -4943,7 +4943,7 @@ static int skip_to_start(int c, colnr_T *colp)
*/
static long find_match_text(colnr_T startcol, int regstart, char_u *match_text)
{
-#define PTR2LEN(x) enc_utf8 ? utf_ptr2len(x) : MB_PTR2LEN(x)
+#define PTR2LEN(x) utf_ptr2len(x)
colnr_T col = startcol;
int regstart_len = PTR2LEN(regline + startcol);