diff options
author | Bram Moolenaar <Bram@vim.org> | 2022-07-04 17:34:33 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2022-07-04 17:34:33 +0100 |
commit | 96ba25ac01279f73c0ecb5d4aa4ff37aa359e5eb (patch) | |
tree | a7ebf066dede8010563debf70816231c4cdf75f4 /src/proto | |
parent | 54e5fed6d27b747ff152cdb6edfb72ff60e70939 (diff) | |
download | vim-git-96ba25ac01279f73c0ecb5d4aa4ff37aa359e5eb.tar.gz |
patch 9.0.0036: 'fillchars' cannot have window-local valuesv9.0.0036
Problem: 'fillchars' cannot have window-local values.
Solution: Make 'fillchars' global-local. (closes #5206)
Diffstat (limited to 'src/proto')
-rw-r--r-- | src/proto/screen.pro | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/proto/screen.pro b/src/proto/screen.pro index 0ee1b5efb..de42c43de 100644 --- a/src/proto/screen.pro +++ b/src/proto/screen.pro @@ -7,7 +7,7 @@ int compute_foldcolumn(win_T *wp, int col); size_t fill_foldcolumn(char_u *p, win_T *wp, int closed, linenr_T lnum); int screen_get_current_line_off(void); void reset_screen_attr(void); -void screen_line(int row, int coloff, int endcol, int clear_width, int flags); +void screen_line(win_T *wp, int row, int coloff, int endcol, int clear_width, int flags); void rl_mirror(char_u *str); void draw_vsep_win(win_T *wp, int row); void win_redr_status_matches(expand_T *xp, int num_matches, char_u **matches, int match, int showtail); @@ -48,7 +48,7 @@ void clearmode(void); void draw_tabline(void); void get_trans_bufname(buf_T *buf); int fillchar_status(int *attr, win_T *wp); -int fillchar_vsep(int *attr); +int fillchar_vsep(int *attr, win_T *wp); int redrawing(void); int messaging(void); void comp_col(void); |