aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/diff.c
diff options
context:
space:
mode:
authorJan Edmund Lazo <jan.lazo@mail.utoronto.ca>2020-03-22 09:51:46 -0400
committerJan Edmund Lazo <jan.lazo@mail.utoronto.ca>2020-04-12 15:56:40 -0400
commit73dc9e943cfea92ec0254f6926c9524029cb0222 (patch)
treeafc1a6f2c02ed4793fc6c0e333b7d9ab4455f605 /src/nvim/diff.c
parent2ec6fec20bb12538b247d7cdacd201005149531c (diff)
downloadrneovim-73dc9e943cfea92ec0254f6926c9524029cb0222.tar.gz
rneovim-73dc9e943cfea92ec0254f6926c9524029cb0222.tar.bz2
rneovim-73dc9e943cfea92ec0254f6926c9524029cb0222.zip
vim-patch:8.1.2378: using old C style comments
Problem: Using old C style comments. Solution: Use // comments where appropriate. https://github.com/vim/vim/commit/5d18efecfd6c45d69f55268948a22cd0465bb955
Diffstat (limited to 'src/nvim/diff.c')
-rw-r--r--src/nvim/diff.c4
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)) {