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
Work on https://github.com/neovim/neovim/issues/459
This commit is contained in:
@@ -1919,7 +1919,7 @@ int do_write(exarg_T *eap)
|
||||
// If 'filetype' was empty try detecting it now.
|
||||
if (*curbuf->b_p_ft == NUL) {
|
||||
if (augroup_exists("filetypedetect")) {
|
||||
(void)do_doautocmd((char_u *)"filetypedetect BufRead", true, NULL);
|
||||
(void)do_doautocmd("filetypedetect BufRead", true, NULL);
|
||||
}
|
||||
do_modelines(0);
|
||||
}
|
||||
|
Reference in New Issue
Block a user