Remove char_u: path_with_url()

This commit is contained in:
Mark Bainter
2015-04-20 13:50:57 +00:00
parent 3128ff3798
commit 789c448d19
4 changed files with 18 additions and 21 deletions

View File

@@ -7347,7 +7347,7 @@ static buf_T *find_buffer(typval_T *avar)
* buffer, these don't use the full path. */
FOR_ALL_BUFFERS(bp) {
if (bp->b_fname != NULL
&& (path_with_url(bp->b_fname)
&& (path_with_url((char *)bp->b_fname)
|| bt_nofile(bp)
)
&& STRCMP(bp->b_fname, avar->vval.v_string) == 0) {