aboutsummaryrefslogtreecommitdiff
path: root/src/syntax.c
diff options
context:
space:
mode:
authorJohn Schmidt <john.schmidt.h@gmail.com>2014-04-07 18:04:18 +0200
committerThiago de Arruda <tpadilha84@gmail.com>2014-04-08 21:56:05 -0300
commit6fb58d1c5c859402871e1d546f7fea1a91dd2995 (patch)
tree4244498e670f344ef20eeb5c3782604d22e770b2 /src/syntax.c
parentaa7218b646e52554621471df3668c2e1d95aa9c9 (diff)
downloadrneovim-6fb58d1c5c859402871e1d546f7fea1a91dd2995.tar.gz
rneovim-6fb58d1c5c859402871e1d546f7fea1a91dd2995.tar.bz2
rneovim-6fb58d1c5c859402871e1d546f7fea1a91dd2995.zip
Change prefix from `os_*` to `path_*`
Diffstat (limited to 'src/syntax.c')
-rw-r--r--src/syntax.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/syntax.c b/src/syntax.c
index 3d11a8f603..31e72a23d1 100644
--- a/src/syntax.c
+++ b/src/syntax.c
@@ -4202,7 +4202,7 @@ static void syn_cmd_include(exarg_T *eap, int syncing)
*/
eap->argt |= (XFILE | NOSPC);
separate_nextcmd(eap);
- if (*eap->arg == '<' || *eap->arg == '$' || os_is_absolute_path(eap->arg)) {
+ if (*eap->arg == '<' || *eap->arg == '$' || path_is_absolute_path(eap->arg)) {
/* For an absolute path, "$VIM/..." or "<sfile>.." we ":source" the
* file. Need to expand the file name first. In other cases
* ":runtime!" is used. */