mirror of
https://github.com/neovim/neovim.git
synced 2025-09-17 16:58:17 +00:00
refactor: replace char_u with char
Work on https://github.com/neovim/neovim/issues/459
This commit is contained in:
@@ -8626,7 +8626,7 @@ void invoke_prompt_callback(void)
|
||||
return;
|
||||
}
|
||||
char *text = ml_get(lnum);
|
||||
char *prompt = (char *)prompt_text();
|
||||
char *prompt = prompt_text();
|
||||
if (strlen(text) >= strlen(prompt)) {
|
||||
text += strlen(prompt);
|
||||
}
|
||||
|
Reference in New Issue
Block a user