Merge pull request #8945 from ZviRackover/fix-7401-step5

mbyte: remove mb_char2bytes
This commit is contained in:
Björn Linse
2018-09-11 09:03:09 +02:00
committed by GitHub
17 changed files with 133 additions and 201 deletions

View File

@@ -1685,7 +1685,7 @@ static void printdigraph(digr_T *dp)
if (utf_iscomposing(dp->result)) {
*p++ = ' ';
}
p += (*mb_char2bytes)(dp->result, p);
p += utf_char2bytes(dp->result, p);
*p = NUL;
msg_outtrans_attr(buf, HL_ATTR(HLF_8));