commit | 0c279bbb9c2b9fce1c837a35ace2d4644eced0b8 | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Tue Mar 19 14:25:54 2013 +0100 |
committer | Bram Moolenaar <Bram@vim.org> | Tue Mar 19 14:25:54 2013 +0100 |
tree | ddfa055ce2fb8b8c92623c665e660a65b90c46a4 | |
parent | b59494cab15310c8e2aaf59d48b270282c3e2017 [diff] [blame] |
updated for version 7.3.869 Problem: bufwinnr() matches buffers in other tabs. Solution: For bufwinnr() and ? only match buffers in the current tab. (Alexey Radkov)
diff --git a/src/if_perl.xs b/src/if_perl.xs index 67ffe18..f934329 100644 --- a/src/if_perl.xs +++ b/src/if_perl.xs
@@ -1056,7 +1056,7 @@ pat = (char_u *)SvPV(sv, len); ++emsg_off; - b = buflist_findpat(pat, pat+len, FALSE, FALSE); + b = buflist_findpat(pat, pat+len, FALSE, FALSE, FALSE); --emsg_off; }