mirror of
https://github.com/neovim/neovim.git
synced 2025-10-05 09:26:30 +00:00
refactor: replace char_u variables and functions with char
Work on https://github.com/neovim/neovim/issues/459
This commit is contained in:
@@ -2201,8 +2201,8 @@ void maybe_intro_message(void)
|
||||
if (buf_is_empty(curbuf)
|
||||
&& (curbuf->b_fname == NULL)
|
||||
&& (firstwin->w_next == NULL)
|
||||
&& (vim_strchr(p_shm, SHM_INTRO) == NULL)) {
|
||||
intro_message(FALSE);
|
||||
&& (vim_strchr((char *)p_shm, SHM_INTRO) == NULL)) {
|
||||
intro_message(false);
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user