diff options
author | Bram Moolenaar <Bram@vim.org> | 2013-03-19 14:25:54 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2013-03-19 14:25:54 +0100 |
commit | 0c279bbb9c2b9fce1c837a35ace2d4644eced0b8 (patch) | |
tree | ddfa055ce2fb8b8c92623c665e660a65b90c46a4 /src/diff.c | |
parent | b59494cab15310c8e2aaf59d48b270282c3e2017 (diff) | |
download | vim-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/diff.c')
-rw-r--r-- | src/diff.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/diff.c b/src/diff.c index 864e60914..f56046095 100644 --- a/src/diff.c +++ b/src/diff.c @@ -2152,7 +2152,7 @@ ex_diffgetput(eap) i = atol((char *)eap->arg); else { - i = buflist_findpat(eap->arg, p, FALSE, TRUE); + i = buflist_findpat(eap->arg, p, FALSE, TRUE, FALSE); if (i < 0) return; /* error message already given */ } |