From 21824df3c6e0e73bb90482899560648fa04d55e5 Mon Sep 17 00:00:00 2001 From: Jan Edmund Lazo Date: Mon, 12 Nov 2018 11:12:44 -0500 Subject: [PATCH] lint --- src/nvim/fileio.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/nvim/fileio.c b/src/nvim/fileio.c index 857e69a001..7e8a7d1a35 100644 --- a/src/nvim/fileio.c +++ b/src/nvim/fileio.c @@ -6072,7 +6072,7 @@ void do_autocmd(char_u *arg_in, int forceit) * Print header when showing autocommands. */ if (!forceit && *cmd == NUL) { - /* Highlight title */ + // Highlight title MSG_PUTS_TITLE(_("\n--- Autocommands ---")); } @@ -6943,7 +6943,7 @@ static bool apply_autocmds_group(event_T event, char_u *fname, char_u *fname_io, // Don't redraw while doing autocommands. - ++RedrawingDisabled; + RedrawingDisabled++; save_sourcing_name = sourcing_name; sourcing_name = NULL; /* don't free this one */ save_sourcing_lnum = sourcing_lnum;