mirror of
https://github.com/neovim/neovim.git
synced 2025-10-04 00:46:30 +00:00
refactor: remove char_u (#22829)
Closes https://github.com/neovim/neovim/issues/459
This commit is contained in:
@@ -149,7 +149,7 @@ void do_ascii(const exarg_T *const eap)
|
||||
char buf1[20];
|
||||
if (vim_isprintc_strict(c) && (c < ' ' || c > '~')) {
|
||||
char buf3[7];
|
||||
transchar_nonprint(curbuf, (char_u *)buf3, c);
|
||||
transchar_nonprint(curbuf, buf3, c);
|
||||
vim_snprintf(buf1, sizeof(buf1), " <%s>", (char *)buf3);
|
||||
} else {
|
||||
buf1[0] = NUL;
|
||||
|
Reference in New Issue
Block a user