aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/eval/funcs.c
diff options
context:
space:
mode:
authorzeertzjq <zeertzjq@outlook.com>2022-07-15 17:53:00 +0800
committerzeertzjq <zeertzjq@outlook.com>2022-07-15 18:27:21 +0800
commit4a64cdafd64198d3607fabaed8fc54e473614269 (patch)
tree7858c42069364b5becbf413685676e96be14e7ea /src/nvim/eval/funcs.c
parent564d99c89a3d9a236df758d320cc38abc50215ec (diff)
downloadrneovim-4a64cdafd64198d3607fabaed8fc54e473614269.tar.gz
rneovim-4a64cdafd64198d3607fabaed8fc54e473614269.tar.bz2
rneovim-4a64cdafd64198d3607fabaed8fc54e473614269.zip
vim-patch:8.1.1547: functionality of bt_nofile() is confusing
Problem: Functionality of bt_nofile() is confusing. Solution: Split into bt_nofile() and bt_nofilename(). https://github.com/vim/vim/commit/26910de8b0da6abab87bd5a397330f9cbe483309
Diffstat (limited to 'src/nvim/eval/funcs.c')
-rw-r--r--src/nvim/eval/funcs.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/eval/funcs.c b/src/nvim/eval/funcs.c
index 63c25fe815..f231146d7c 100644
--- a/src/nvim/eval/funcs.c
+++ b/src/nvim/eval/funcs.c
@@ -482,7 +482,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) || bt_nofile(bp))
+ && (path_with_url(bp->b_fname) || bt_nofilename(bp))
&& STRCMP(bp->b_fname, avar->vval.v_string) == 0) {
buf = bp;
break;