diff options
author | James McCoy <jamessan@jamessan.com> | 2020-04-13 11:06:23 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-13 11:06:23 -0400 |
commit | 13b4a6fd4fa67794e76892cb362121a33a756f58 (patch) | |
tree | 31bd8bca21028be79e3111a53725144e854d92f5 /src/nvim/diff.c | |
parent | 46fdad255ead9ca484a6e512efe13b379b8fc8ab (diff) | |
parent | a122f6c6d4d64ab6a3bcd55bde220dc115acd73c (diff) | |
download | rneovim-13b4a6fd4fa67794e76892cb362121a33a756f58.tar.gz rneovim-13b4a6fd4fa67794e76892cb362121a33a756f58.tar.bz2 rneovim-13b4a6fd4fa67794e76892cb362121a33a756f58.zip |
Merge pull request #12073 from janlazo/vim-8.2.0027
vim-patch:8.1.{2366,2378,2387,2387},8.2.{27,560}
Diffstat (limited to 'src/nvim/diff.c')
-rw-r--r-- | src/nvim/diff.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/diff.c b/src/nvim/diff.c index f8b7592d0b..3de5fc49bd 100644 --- a/src/nvim/diff.c +++ b/src/nvim/diff.c @@ -648,8 +648,8 @@ void diff_redraw(bool dofold) foldUpdateAll(wp); } - /* A change may have made filler lines invalid, need to take care - * of that for other windows. */ + // A change may have made filler lines invalid, need to take care + // of that for other windows. int n = diff_check(wp, wp->w_topline); if (((wp != curwin) && (wp->w_topfill > 0)) || (n > 0)) { |