aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/buffer.c
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2018-03-24 16:07:11 +0100
committerGitHub <noreply@github.com>2018-03-24 16:07:11 +0100
commit1b61167373420440535cb975804fd9e728025011 (patch)
treebdd88851fad1197bc0965647a8525e0fb86b1841 /src/nvim/buffer.c
parent84a25770ac4b1c18f0e6bd1e17bdda7eb3c6afa0 (diff)
parent0ecf7e3a2d3bf4c8062ebf1d462a16d716a37352 (diff)
downloadrneovim-1b61167373420440535cb975804fd9e728025011.tar.gz
rneovim-1b61167373420440535cb975804fd9e728025011.tar.bz2
rneovim-1b61167373420440535cb975804fd9e728025011.zip
Merge #8168 'refactor: rename some functions'
Diffstat (limited to 'src/nvim/buffer.c')
-rw-r--r--src/nvim/buffer.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/buffer.c b/src/nvim/buffer.c
index 3958fb05e9..0cd6f628b5 100644
--- a/src/nvim/buffer.c
+++ b/src/nvim/buffer.c
@@ -2683,7 +2683,7 @@ void buflist_altfpos(win_T *win)
}
/// Check that "ffname" is not the same file as current file.
-/// Fname must have a full path (expanded by path_get_absolute_path()).
+/// Fname must have a full path (expanded by path_to_absolute()).
///
/// @param ffname full path name to check
bool otherfile(char_u *ffname)
@@ -2693,7 +2693,7 @@ bool otherfile(char_u *ffname)
}
/// Check that "ffname" is not the same file as the file loaded in "buf".
-/// Fname must have a full path (expanded by path_get_absolute_path()).
+/// Fname must have a full path (expanded by path_to_absolute()).
///
/// @param buf buffer to check
/// @param ffname full path name to check