mirror of
https://github.com/neovim/neovim.git
synced 2025-09-21 02:38:19 +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:
@@ -503,7 +503,7 @@ char *save_abs_path(const char *name)
|
||||
if (!path_is_absolute((char_u *)name)) {
|
||||
return FullName_save(name, true);
|
||||
}
|
||||
return (char *)vim_strsave((char_u *)name);
|
||||
return xstrdup(name);
|
||||
}
|
||||
|
||||
/// Checks if a path has a wildcard character including '~', unless at the end.
|
||||
|
Reference in New Issue
Block a user