summaryrefslogtreecommitdiff
path: root/src/proto
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2019-12-14 16:18:15 +0100
committerBram Moolenaar <Bram@vim.org>2019-12-14 16:18:15 +0100
commita6e8f888e7fc31b8ab7233509254fb2e2fe4089f (patch)
treecef20e90b6736c286442b40a1169aed2263ec984 /src/proto
parentf5f4b6cb5f6174458848d2fbc0388379222c8a0f (diff)
downloadvim-git-a6e8f888e7fc31b8ab7233509254fb2e2fe4089f.tar.gz
patch 8.2.0004: get E685 and E931 if buffer reload is interruptedv8.2.0004
Problem: Get E685 and E931 if buffer reload is interrupted. Solution: Do not abort deleting a dummy buffer. (closes #5361)
Diffstat (limited to 'src/proto')
-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 d876cd537..3a6329936 100644
--- a/src/proto/buffer.pro
+++ b/src/proto/buffer.pro
@@ -5,7 +5,7 @@ int open_buffer(int read_stdin, exarg_T *eap, int flags);
void set_bufref(bufref_T *bufref, buf_T *buf);
int bufref_valid(bufref_T *bufref);
int buf_valid(buf_T *buf);
-void close_buffer(win_T *win, buf_T *buf, int action, int abort_if_last);
+void close_buffer(win_T *win, buf_T *buf, int action, int abort_if_last, int ignore_abort);
void buf_clear_file(buf_T *buf);
void buf_freeall(buf_T *buf, int flags);
void goto_buffer(exarg_T *eap, int start, int dir, int count);