refactor: replace char_u with char 21 (#21779)

refactor: replace char_u with char

Work on https://github.com/neovim/neovim/issues/459
This commit is contained in:
dundargoc
2023-01-14 08:58:28 +01:00
committed by GitHub
parent 9220755302
commit e89c39d6f0
51 changed files with 499 additions and 507 deletions

View File

@@ -488,7 +488,7 @@ int readfile(char *fname, char *sfname, linenr_T from, linenr_T lines_to_skip,
}
}
if (!silent) {
if (dir_of_file_exists((char_u *)fname)) {
if (dir_of_file_exists(fname)) {
filemess(curbuf, sfname, new_file_message(), 0);
} else {
filemess(curbuf, sfname, _("[New DIRECTORY]"), 0);