diff options
author | Matthieu Coudron <mcoudron@hotmail.com> | 2020-12-23 23:19:33 +0100 |
---|---|---|
committer | Matthieu Coudron <mcoudron@hotmail.com> | 2020-12-24 00:21:05 +0100 |
commit | 7add3ef996db3fd6ec8d03d2b8d879c58934b6e5 (patch) | |
tree | 644b185f37197352178e824c549c9f5c93af3acd /src/nvim/screen.c | |
parent | 45166313ccf15dac5dd45926e77c58240de79413 (diff) | |
download | rneovim-7add3ef996db3fd6ec8d03d2b8d879c58934b6e5.tar.gz rneovim-7add3ef996db3fd6ec8d03d2b8d879c58934b6e5.tar.bz2 rneovim-7add3ef996db3fd6ec8d03d2b8d879c58934b6e5.zip |
fix: appease linter
Diffstat (limited to 'src/nvim/screen.c')
-rw-r--r-- | src/nvim/screen.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/nvim/screen.c b/src/nvim/screen.c index 1110b15198..afabbe6afc 100644 --- a/src/nvim/screen.c +++ b/src/nvim/screen.c @@ -2820,12 +2820,10 @@ static int win_line(win_T *wp, linenr_T lnum, int startrow, int endrow, n_extra = col + 1; } else { n_extra = grid->Columns - col; - ILOG("n_extra %d vs total widht %d", grid->Columns, col); } char_attr = win_hl_attr(wp, HLF_DED); } if (*p_sbr != NUL && need_showbreak) { - ILOG("need showbreak %d", need_showbreak); /* Draw 'showbreak' at the start of each broken line. */ p_extra = p_sbr; c_extra = NUL; |