diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2018-04-02 12:01:00 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-04-02 12:01:00 +0200 |
commit | 0c59ac1a2c7ee6ca2b03efa1013a1db0b4fcda61 (patch) | |
tree | 52ab90af627d51d0c73d53e7c03f80e82d8accbe /src/nvim/quickfix.c | |
parent | 4b26e365aed364a62dd1535ee04fea9f458afe81 (diff) | |
parent | 5d9bb16d66043f10dc14435c0594ca6f31b1795f (diff) | |
download | rneovim-0c59ac1a2c7ee6ca2b03efa1013a1db0b4fcda61.tar.gz rneovim-0c59ac1a2c7ee6ca2b03efa1013a1db0b4fcda61.tar.bz2 rneovim-0c59ac1a2c7ee6ca2b03efa1013a1db0b4fcda61.zip |
Merge #5908 'shada: Also save numbered marks'
Diffstat (limited to 'src/nvim/quickfix.c')
-rw-r--r-- | src/nvim/quickfix.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/quickfix.c b/src/nvim/quickfix.c index 2d8c353f92..46124e0672 100644 --- a/src/nvim/quickfix.c +++ b/src/nvim/quickfix.c @@ -3029,7 +3029,7 @@ static void qf_fill_buffer(qf_info_T *qi, buf_T *buf, qfline_T *old_last) /* * Return TRUE if "buf" is the quickfix buffer. */ -int bt_quickfix(buf_T *buf) +int bt_quickfix(const buf_T *const buf) { return buf != NULL && buf->b_p_bt[0] == 'q'; } |