From 2ff5189d68e9e9ec8ebe1bccc26f28e8d6588623 Mon Sep 17 00:00:00 2001 From: zeertzjq Date: Tue, 28 Dec 2021 22:55:28 +0800 Subject: chore: fix compiler warning for multi-line comment (#16812) --- src/nvim/indent_c.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/nvim/indent_c.c b/src/nvim/indent_c.c index 2c89a48272..0f0cab33ea 100644 --- a/src/nvim/indent_c.c +++ b/src/nvim/indent_c.c @@ -925,7 +925,7 @@ static int cin_isfuncdecl(char_u **sp, linenr_T first_lnum, linenr_T min_lnum) if (*s == ')' && cin_nocode(s + 1)) { // ')' at the end: may have found a match // Check for the previous line not to end in a backslash: - // #if defined(x) && \ + // #if defined(x) && {backslash} // defined(y) lnum = first_lnum - 1; s = ml_get(lnum); -- cgit