From 2106bada5bbd6de4729a8714d011e0eca61cee35 Mon Sep 17 00:00:00 2001 From: KillTheMule Date: Sun, 11 Feb 2018 23:02:53 +0100 Subject: Enable -Wconversion --- src/nvim/misc1.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/nvim/misc1.c') diff --git a/src/nvim/misc1.c b/src/nvim/misc1.c index 7c9e728c92..47ec3eff32 100644 --- a/src/nvim/misc1.c +++ b/src/nvim/misc1.c @@ -1921,9 +1921,9 @@ changed_lines( linenr_T lnume, // line below last changed line long xtra, // number of extra lines (negative when deleting) bool send_update // some callers like undo/redo call changed_lines() - // and then increment b_changedtick *again*. This flag - // allows these callers to send the nvim_buf_update events - // after they're done modifying b_changedtick. + // and then increment b_changedtick *again*. This flag + // allows these callers to send the nvim_buf_update events + // after they're done modifying b_changedtick. ) { changed_lines_buf(curbuf, lnum, lnume, xtra); -- cgit