mirror of
https://github.com/neovim/neovim.git
synced 2025-09-21 18:58:18 +00:00
refactor/rename: path_is_absolute()
This commit is contained in:
@@ -8547,7 +8547,7 @@ eval_vars (
|
||||
break;
|
||||
|
||||
case SPEC_AFILE: // file name for autocommand
|
||||
if (autocmd_fname != NULL && !path_is_absolute_path(autocmd_fname)) {
|
||||
if (autocmd_fname != NULL && !path_is_absolute(autocmd_fname)) {
|
||||
// Still need to turn the fname into a full path. It was
|
||||
// postponed to avoid a delay when <afile> is not used.
|
||||
result = (char_u *)FullName_save((char *)autocmd_fname, false);
|
||||
|
Reference in New Issue
Block a user