aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/path.c
diff options
context:
space:
mode:
authorMark Bainter <mbainter+github@gmail.com>2015-04-20 13:50:57 +0000
committerMark Bainter <mbainter+github@gmail.com>2015-05-06 21:25:04 -0500
commit789c448d195e4f0b02222335041039e2341ee30a (patch)
treec7d517ba9fe14174f0e5f233ce80c63f625c310f /src/nvim/path.c
parent3128ff37988bb36e27d77539001631b62d89d88c (diff)
downloadrneovim-789c448d195e4f0b02222335041039e2341ee30a.tar.gz
rneovim-789c448d195e4f0b02222335041039e2341ee30a.tar.bz2
rneovim-789c448d195e4f0b02222335041039e2341ee30a.zip
Remove char_u: path_with_url()
Diffstat (limited to 'src/nvim/path.c')
-rw-r--r--src/nvim/path.c23
1 files changed, 10 insertions, 13 deletions
diff --git a/src/nvim/path.c b/src/nvim/path.c
index d15dbb33fe..93e3a50488 100644
--- a/src/nvim/path.c
+++ b/src/nvim/path.c
@@ -734,7 +734,7 @@ static void expand_path_option(char_u *curdir, garray_T *gap)
} else if (buf[0] == NUL)
/* relative to current directory */
STRCPY(buf, curdir);
- else if (path_with_url(buf))
+ else if (path_with_url((char *)buf))
/* URL can't be used here */
continue;
else if (!path_is_absolute_path(buf)) {
@@ -1533,17 +1533,14 @@ int path_is_url(const char *p)
return 0;
}
-/*
- * Check if "fname" starts with "name://". Return URL_SLASH if it does.
- * Return URL_BACKSLASH for "name:\\".
- * Return zero otherwise.
- */
-int path_with_url(char_u *fname)
+/// Check if "fname" starts with "name://". Return URL_SLASH if it does.
+///
+/// @param fname is the filename to test
+/// @return URL_BACKSLASH for "name:\\", zero otherwise.
+int path_with_url(const char *fname)
{
- char_u *p;
-
- for (p = fname; isalpha(*p); ++p)
- ;
+ const char *p;
+ for (p = fname; isalpha(*p); p++) {}
return path_is_url(p);
}
@@ -1552,7 +1549,7 @@ int path_with_url(char_u *fname)
*/
int vim_isAbsName(char_u *name)
{
- return path_with_url(name) != 0 || path_is_absolute_path(name);
+ return path_with_url((char *)name) != 0 || path_is_absolute_path(name);
}
/*
@@ -1575,7 +1572,7 @@ vim_FullName (
if (fname == NULL)
return FAIL;
- url = path_with_url(fname);
+ url = path_with_url((char *)fname);
if (!url)
retval = path_get_absolute_path(fname, buf, len, force);
if (url || retval == FAIL) {