diff options
author | John Schmidt <john.schmidt.h@gmail.com> | 2014-04-07 18:04:18 +0200 |
---|---|---|
committer | Thiago de Arruda <tpadilha84@gmail.com> | 2014-04-08 21:56:05 -0300 |
commit | 6fb58d1c5c859402871e1d546f7fea1a91dd2995 (patch) | |
tree | 4244498e670f344ef20eeb5c3782604d22e770b2 /src/fileio.c | |
parent | aa7218b646e52554621471df3668c2e1d95aa9c9 (diff) | |
download | rneovim-6fb58d1c5c859402871e1d546f7fea1a91dd2995.tar.gz rneovim-6fb58d1c5c859402871e1d546f7fea1a91dd2995.tar.bz2 rneovim-6fb58d1c5c859402871e1d546f7fea1a91dd2995.zip |
Change prefix from `os_*` to `path_*`
Diffstat (limited to 'src/fileio.c')
-rw-r--r-- | src/fileio.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fileio.c b/src/fileio.c index 92ebb9ff19..7f2d7b1098 100644 --- a/src/fileio.c +++ b/src/fileio.c @@ -4670,7 +4670,7 @@ void shorten_fnames(int force) && !path_with_url(buf->b_fname) && (force || buf->b_sfname == NULL - || os_is_absolute_path(buf->b_sfname))) { + || path_is_absolute_path(buf->b_sfname))) { vim_free(buf->b_sfname); buf->b_sfname = NULL; p = shorten_fname(buf->b_ffname, dirname); |