summaryrefslogtreecommitdiffstats
path: root/src/proto/buffer.pro
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2016-07-10 18:21:50 +0200
committerBram Moolenaar <Bram@vim.org>2016-07-10 18:21:50 +0200
commitb25f9a97e9aad3cbb4bc3fe87cdbd5700f8aa0c6 (patch)
treec51d62bd77521a1de07d989af9a8ca3cd8c8b85a /src/proto/buffer.pro
parent8240433f48f7383c281ba2453cc55f10b8ec47d9 (diff)
patch 7.4.2018v7.4.2018
Problem: buf_valid() can be slow when there are many buffers. Solution: Add bufref_valid(), only go through the buffer list when a buffer was freed.
Diffstat (limited to 'src/proto/buffer.pro')
-rw-r--r--src/proto/buffer.pro2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/proto/buffer.pro b/src/proto/buffer.pro
index 71217287a6..e2adf5c9f5 100644
--- a/src/proto/buffer.pro
+++ b/src/proto/buffer.pro
@@ -1,5 +1,7 @@
/* buffer.c */
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 buf_clear_file(buf_T *buf);