mirror of
https://github.com/neovim/neovim.git
synced 2025-09-29 06:28:35 +00:00
refactor: replace char_u with char
Work on https://github.com/neovim/neovim/issues/459
This commit is contained in:
@@ -2881,7 +2881,7 @@ static bool color_cmdline(CmdlineInfo *colored_ccline)
|
||||
// Check whether result of the previous call is still valid.
|
||||
if (ccline_colors->prompt_id == colored_ccline->prompt_id
|
||||
&& ccline_colors->cmdbuff != NULL
|
||||
&& STRCMP(ccline_colors->cmdbuff, colored_ccline->cmdbuff) == 0) {
|
||||
&& strcmp(ccline_colors->cmdbuff, colored_ccline->cmdbuff) == 0) {
|
||||
return ret;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user