Merge pull request #20007 from dundargoc/refactor/char_u/5

refactor: replace char_u with char 5
This commit is contained in:
bfredl
2022-08-31 20:50:43 +02:00
committed by GitHub
57 changed files with 511 additions and 508 deletions

View File

@@ -174,7 +174,7 @@ static void showmap(mapblock_T *mp, bool local)
}
// Display the LHS. Get length of what we write.
len = (size_t)msg_outtrans_special(mp->m_keys, true, 0);
len = (size_t)msg_outtrans_special((char *)mp->m_keys, true, 0);
do {
msg_putchar(' '); // padd with blanks
len++;
@@ -203,7 +203,7 @@ static void showmap(mapblock_T *mp, bool local)
} else if (mp->m_str[0] == NUL) {
msg_puts_attr("<Nop>", HL_ATTR(HLF_8));
} else {
msg_outtrans_special((char_u *)mp->m_str, false, 0);
msg_outtrans_special(mp->m_str, false, 0);
}
if (mp->m_desc != NULL) {