aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/getchar.c
diff options
context:
space:
mode:
authorZviRackover <zvirack@gmail.com>2018-09-02 00:58:30 +0300
committerZviRackover <zvirack@gmail.com>2018-09-09 10:45:50 +0300
commitcbdbc4f63d68a6b17b9eea5c67130e37d3d0f278 (patch)
tree5d82993e830a807647ec81aad1d5a391e4490cb0 /src/nvim/getchar.c
parent50eadfe2e991a0bb5fe0f98377d91702f0a20492 (diff)
downloadrneovim-cbdbc4f63d68a6b17b9eea5c67130e37d3d0f278.tar.gz
rneovim-cbdbc4f63d68a6b17b9eea5c67130e37d3d0f278.tar.bz2
rneovim-cbdbc4f63d68a6b17b9eea5c67130e37d3d0f278.zip
Refactor: Remove occurences of mb_char2bytes
Diffstat (limited to 'src/nvim/getchar.c')
-rw-r--r--src/nvim/getchar.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/nvim/getchar.c b/src/nvim/getchar.c
index f13bede076..544d518ff1 100644
--- a/src/nvim/getchar.c
+++ b/src/nvim/getchar.c
@@ -315,7 +315,7 @@ static void add_char_buff(buffheader_T *buf, int c)
if (IS_SPECIAL(c)) {
len = 1;
} else {
- len = mb_char2bytes(c, bytes);
+ len = utf_char2bytes(c, bytes);
}
for (int i = 0; i < len; i++) {
@@ -978,7 +978,7 @@ void ins_char_typebuf(int c)
buf[2] = (char_u)K_THIRD(c);
buf[3] = NUL;
} else {
- buf[(*mb_char2bytes)(c, buf)] = NUL;
+ buf[utf_char2bytes(c, buf)] = NUL;
}
(void)ins_typebuf(buf, KeyNoremap, 0, !KeyTyped, cmd_silent);
}
@@ -3661,7 +3661,7 @@ int check_abbr(int c, char_u *ptr, int col, int mincol)
/* if ABBR_OFF has been added, remove it here */
if (c >= ABBR_OFF)
c -= ABBR_OFF;
- j += (*mb_char2bytes)(c, tb + j);
+ j += utf_char2bytes(c, tb + j);
} else {
tb[j++] = (char_u)c;
}