diff options
author | ZviRackover <zvirack@gmail.com> | 2018-08-15 22:02:33 +0300 |
---|---|---|
committer | ZviRackover <zvirack@gmail.com> | 2018-08-15 22:02:33 +0300 |
commit | 2bddc4ca54e31a14b7e9799beda134217ae867e7 (patch) | |
tree | 9c91c11bc3f937f4dfec918e0693c47827a0ff61 /src/nvim/mbyte.c | |
parent | b5cfac089409faf17a290d4bfe1b669212e2984e (diff) | |
download | rneovim-2bddc4ca54e31a14b7e9799beda134217ae867e7.tar.gz rneovim-2bddc4ca54e31a14b7e9799beda134217ae867e7.tar.bz2 rneovim-2bddc4ca54e31a14b7e9799beda134217ae867e7.zip |
Remove occurences of mb_head_off
Diffstat (limited to 'src/nvim/mbyte.c')
-rw-r--r-- | src/nvim/mbyte.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/mbyte.c b/src/nvim/mbyte.c index 94bf7fb985..11c1897153 100644 --- a/src/nvim/mbyte.c +++ b/src/nvim/mbyte.c @@ -1710,7 +1710,7 @@ void mb_check_adjust_col(void *win_) win->w_cursor.col = len - 1; } // Move the cursor to the head byte. - win->w_cursor.col -= (*mb_head_off)(p, p + win->w_cursor.col); + win->w_cursor.col -= utf_head_off(p, p + win->w_cursor.col); } // Reset `coladd` when the cursor would be on the right half of a |