summaryrefslogtreecommitdiffstats
path: root/src/buffer.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2017-06-05 16:01:59 +0200
committerBram Moolenaar <Bram@vim.org>2017-06-05 16:01:59 +0200
commit8ad80dea089ffeb1a845199c013e9bb4be1cd22e (patch)
tree8acbc6f87058076a9965d14ac10e8d37e57f0aa0 /src/buffer.c
parentb463e8d999ec812d656876f313efbeaeed663b45 (diff)
patch 8.0.0621: :stag does not respect 'switchbuf'v8.0.0621
Problem: The ":stag" command does not respect 'switchbuf'. Solution: Check 'switchbuf' for tag commands that may open a new window. (Ingo Karkat, closes #1681) Define macros for the return values of getfile().
Diffstat (limited to 'src/buffer.c')
-rw-r--r--src/buffer.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/buffer.c b/src/buffer.c
index a57d2f6435..2f574e03d7 100644
--- a/src/buffer.c
+++ b/src/buffer.c
@@ -2352,8 +2352,8 @@ buflist_getfile(
#endif
++RedrawingDisabled;
- if (getfile(buf->b_fnum, NULL, NULL, (options & GETF_SETMARK),
- lnum, forceit) <= 0)
+ if (GETFILE_SUCCESS(getfile(buf->b_fnum, NULL, NULL,
+ (options & GETF_SETMARK), lnum, forceit)))
{
--RedrawingDisabled;