comparison src/proto/buffer.pro @ 11788:77bf0346687e v8.0.0776

patch 8.0.0776: function prototypes missing without the quickfix feature commit https://github.com/vim/vim/commit/f0a521f4f76904edb74e182c12732189b347ff68 Author: Bram Moolenaar <Bram@vim.org> Date: Tue Jul 25 23:31:12 2017 +0200 patch 8.0.0776: function prototypes missing without the quickfix feature Problem: Function prototypes missing without the quickfix feature. (Tony Mechelynck) Solution: Move non-quickfix functions to buffer.c.
author Christian Brabandt <cb@256bit.org>
date Tue, 25 Jul 2017 23:45:04 +0200
parents 69ed2c9d34a6
children 5ceaecedbad2
comparison
equal deleted inserted replaced
11787:c3c09047d106 11788:77bf0346687e
51 void do_arg_all(int count, int forceit, int keep_tabs); 51 void do_arg_all(int count, int forceit, int keep_tabs);
52 void ex_buffer_all(exarg_T *eap); 52 void ex_buffer_all(exarg_T *eap);
53 void do_modelines(int flags); 53 void do_modelines(int flags);
54 int read_viminfo_bufferlist(vir_T *virp, int writing); 54 int read_viminfo_bufferlist(vir_T *virp, int writing);
55 void write_viminfo_bufferlist(FILE *fp); 55 void write_viminfo_bufferlist(FILE *fp);
56 int bt_quickfix(buf_T *buf);
57 int bt_terminal(buf_T *buf);
58 int bt_nofile(buf_T *buf);
59 int bt_dontwrite(buf_T *buf);
60 int bt_dontwrite_msg(buf_T *buf);
61 int buf_hide(buf_T *buf);
56 char_u *buf_spname(buf_T *buf); 62 char_u *buf_spname(buf_T *buf);
57 int find_win_for_buf(buf_T *buf, win_T **wp, tabpage_T **tp); 63 int find_win_for_buf(buf_T *buf, win_T **wp, tabpage_T **tp);
58 void buf_addsign(buf_T *buf, int id, linenr_T lnum, int typenr); 64 void buf_addsign(buf_T *buf, int id, linenr_T lnum, int typenr);
59 linenr_T buf_change_sign_type(buf_T *buf, int markId, int typenr); 65 linenr_T buf_change_sign_type(buf_T *buf, int markId, int typenr);
60 int buf_getsigntype(buf_T *buf, linenr_T lnum, int type); 66 int buf_getsigntype(buf_T *buf, linenr_T lnum, int type);