aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/diff.c
diff options
context:
space:
mode:
authorZviRackover <zvirack@gmail.com>2018-08-15 22:02:33 +0300
committerZviRackover <zvirack@gmail.com>2018-08-15 22:02:33 +0300
commit2bddc4ca54e31a14b7e9799beda134217ae867e7 (patch)
tree9c91c11bc3f937f4dfec918e0693c47827a0ff61 /src/nvim/diff.c
parentb5cfac089409faf17a290d4bfe1b669212e2984e (diff)
downloadrneovim-2bddc4ca54e31a14b7e9799beda134217ae867e7.tar.gz
rneovim-2bddc4ca54e31a14b7e9799beda134217ae867e7.tar.bz2
rneovim-2bddc4ca54e31a14b7e9799beda134217ae867e7.zip
Remove occurences of mb_head_off
Diffstat (limited to 'src/nvim/diff.c')
-rw-r--r--src/nvim/diff.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/diff.c b/src/nvim/diff.c
index 878971a35c..cd0aa40ecd 100644
--- a/src/nvim/diff.c
+++ b/src/nvim/diff.c
@@ -1965,8 +1965,8 @@ bool diff_find_change(win_T *wp, linenr_T lnum, int *startp, int *endp)
if (has_mbyte) {
// Move back to first byte of character in both lines (may
// have "nn^" in line_org and "n^ in line_new).
- si_org -= (*mb_head_off)(line_org, line_org + si_org);
- si_new -= (*mb_head_off)(line_new, line_new + si_new);
+ si_org -= utf_head_off(line_org, line_org + si_org);
+ si_new -= utf_head_off(line_new, line_new + si_new);
}
if (*startp > si_org) {