mirror of
https://github.com/neovim/neovim.git
synced 2025-09-24 20:18:32 +00:00
refactor: replace char_u with char
Work on https://github.com/neovim/neovim/issues/459
This commit is contained in:
@@ -895,7 +895,7 @@ void suggest_load_files(void)
|
||||
slang->sl_sugloaded = true;
|
||||
|
||||
dotp = strrchr(slang->sl_fname, '.');
|
||||
if (dotp == NULL || FNAMECMP(dotp, ".spl") != 0) {
|
||||
if (dotp == NULL || path_fnamecmp(dotp, ".spl") != 0) {
|
||||
continue;
|
||||
}
|
||||
STRCPY(dotp, ".sug");
|
||||
|
Reference in New Issue
Block a user