mirror of
https://github.com/neovim/neovim.git
synced 2025-09-28 14:08:32 +00:00
refactor: replace char_u variables and functions with char (#18288)
Work on https://github.com/neovim/neovim/issues/459
This commit is contained in:
@@ -831,7 +831,7 @@ void do_autocmd(char_u *arg_in, int forceit)
|
||||
// Find the start of the commands.
|
||||
// Expand <sfile> in it.
|
||||
if (*cmd != NUL) {
|
||||
cmd = expand_sfile(cmd);
|
||||
cmd = (char_u *)expand_sfile((char *)cmd);
|
||||
if (cmd == NULL) { // some error
|
||||
return;
|
||||
}
|
||||
|
Reference in New Issue
Block a user