summaryrefslogtreecommitdiffstats
path: root/src/if_perl.xs
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/if_perl.xs
parentb59494cab15310c8e2aaf59d48b270282c3e2017 (diff)
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/if_perl.xs')
-rw-r--r--src/if_perl.xs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/if_perl.xs b/src/if_perl.xs
index 67ffe18d94..f934329303 100644
--- a/src/if_perl.xs
+++ b/src/if_perl.xs
@@ -1056,7 +1056,7 @@ Buffers(...)
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;
}