mirror of
https://github.com/neovim/neovim.git
synced 2025-09-18 01:08:20 +00:00
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:
@@ -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);
|
||||
|
Reference in New Issue
Block a user