summaryrefslogtreecommitdiff
path: root/src/proto/buffer.pro
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2013-03-19 14:25:54 +0100
committerBram Moolenaar <Bram@vim.org>2013-03-19 14:25:54 +0100
commit0c279bbb9c2b9fce1c837a35ace2d4644eced0b8 (patch)
treeddfa055ce2fb8b8c92623c665e660a65b90c46a4 /src/proto/buffer.pro
parentb59494cab15310c8e2aaf59d48b270282c3e2017 (diff)
downloadvim-git-0c279bbb9c2b9fce1c837a35ace2d4644eced0b8.tar.gz
updated for version 7.3.869v7.3.869
Problem: bufwinnr() matches buffers in other tabs. Solution: For bufwinnr() and ? only match buffers in the current tab. (Alexey Radkov)
Diffstat (limited to 'src/proto/buffer.pro')
-rw-r--r--src/proto/buffer.pro2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/proto/buffer.pro b/src/proto/buffer.pro
index 85aeddaef..ad205c0b3 100644
--- a/src/proto/buffer.pro
+++ b/src/proto/buffer.pro
@@ -17,7 +17,7 @@ int buflist_getfile __ARGS((int n, linenr_T lnum, int options, int forceit));
void buflist_getfpos __ARGS((void));
buf_T *buflist_findname_exp __ARGS((char_u *fname));
buf_T *buflist_findname __ARGS((char_u *ffname));
-int buflist_findpat __ARGS((char_u *pattern, char_u *pattern_end, int unlisted, int diffmode));
+int buflist_findpat __ARGS((char_u *pattern, char_u *pattern_end, int unlisted, int diffmode, int curtab_only));
int ExpandBufnames __ARGS((char_u *pat, int *num_file, char_u ***file, int options));
buf_T *buflist_findnr __ARGS((int nr));
char_u *buflist_nr2name __ARGS((int n, int fullname, int helptail));