mirror of
https://github.com/neovim/neovim.git
synced 2025-09-28 22:18:33 +00:00
refactor: replace char_u with char 4 (#19987)
* refactor: replace char_u with char Work on https://github.com/neovim/neovim/issues/459
This commit is contained in:
@@ -3198,7 +3198,7 @@ static void draw_cmdline(int start, int len)
|
||||
}
|
||||
}
|
||||
|
||||
msg_outtrans_len((char_u *)arshape_buf, newlen);
|
||||
msg_outtrans_len(arshape_buf, newlen);
|
||||
} else {
|
||||
draw_cmdline_no_arabicshape:
|
||||
if (kv_size(ccline.last_colors.colors)) {
|
||||
@@ -3213,7 +3213,7 @@ draw_cmdline_no_arabicshape:
|
||||
chunk.attr);
|
||||
}
|
||||
} else {
|
||||
msg_outtrans_len(ccline.cmdbuff + start, len);
|
||||
msg_outtrans_len((char *)ccline.cmdbuff + start, len);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user