summaryrefslogtreecommitdiff
path: root/src/proto/buffer.pro
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2020-10-26 21:05:27 +0100
committerBram Moolenaar <Bram@vim.org>2020-10-26 21:05:27 +0100
commit8133cc6bf454eb90bb0868f7cf806fce5c0c9fe6 (patch)
treebfb32937e3b811412be16b24058e03840e94cc78 /src/proto/buffer.pro
parentc8970b94645d0730f4a7cc42388ff32665398e8b (diff)
downloadvim-git-8133cc6bf454eb90bb0868f7cf806fce5c0c9fe6.tar.gz
patch 8.2.1909: number of status line items is limited to 80v8.2.1909
Problem: Number of status line items is limited to 80. Solution: Dynamically allocate the arrays. (Rom Grk, closes #7181)
Diffstat (limited to 'src/proto/buffer.pro')
-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 4d890ce45..3fdcc6949 100644
--- a/src/proto/buffer.pro
+++ b/src/proto/buffer.pro
@@ -48,7 +48,7 @@ void col_print(char_u *buf, size_t buflen, int col, int vcol);
void maketitle(void);
void resettitle(void);
void free_titles(void);
-int build_stl_str_hl(win_T *wp, char_u *out, size_t outlen, char_u *fmt, int use_sandbox, int fillchar, int maxwidth, struct stl_hlrec *hltab, struct stl_hlrec *tabtab);
+int build_stl_str_hl(win_T *wp, char_u *out, size_t outlen, char_u *fmt, int use_sandbox, int fillchar, int maxwidth, stl_hlrec_T **hltab, stl_hlrec_T **tabtab);
void get_rel_pos(win_T *wp, char_u *buf, int buflen);
char_u *fix_fname(char_u *fname);
void fname_expand(buf_T *buf, char_u **ffname, char_u **sfname);