diff options
author | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2021-06-05 13:18:05 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-05 13:18:05 -0400 |
commit | becbb7436f7f027f0ff1fcf440334c0b3a9a8e1a (patch) | |
tree | 3bfbda933913e5a4636241439d4f350956126431 /src/nvim/screen.c | |
parent | bfcec8d2f03cb4eb7dc905e97b1f1c13c2ec2241 (diff) | |
parent | 77b24c867bf55c84bf7c7b13c33bd7ee33880ac8 (diff) | |
download | rneovim-becbb7436f7f027f0ff1fcf440334c0b3a9a8e1a.tar.gz rneovim-becbb7436f7f027f0ff1fcf440334c0b3a9a8e1a.tar.bz2 rneovim-becbb7436f7f027f0ff1fcf440334c0b3a9a8e1a.zip |
Merge pull request #14724 from janlazo/vim-8.2.2877
vim-patch:8.0.1578,8.2.{2877,2937}
Diffstat (limited to 'src/nvim/screen.c')
-rw-r--r-- | src/nvim/screen.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/screen.c b/src/nvim/screen.c index 90ac4ac7aa..844104e7d0 100644 --- a/src/nvim/screen.c +++ b/src/nvim/screen.c @@ -2101,7 +2101,7 @@ static int win_line(win_T *wp, linenr_T lnum, int startrow, int endrow, bool search_attr_from_match = false; // if search_attr is from :match bool has_decor = false; // this buffer has decoration bool do_virttext = false; // draw virtual text for this line - int win_col_offset; // offsett for window columns + int win_col_offset = 0; // offset for window columns char_u buf_fold[FOLD_TEXT_LEN + 1]; // Hold value returned by get_foldtext |