aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorzeertzjq <zeertzjq@outlook.com>2021-12-28 22:55:28 +0800
committerGitHub <noreply@github.com>2021-12-28 15:55:28 +0100
commit2ff5189d68e9e9ec8ebe1bccc26f28e8d6588623 (patch)
tree645cdfe83cf97ed6b6f4843642f9add0b6cf7b4f
parent645b3145766d945d0dd067ce4f71ceaf5febe29d (diff)
downloadrneovim-2ff5189d68e9e9ec8ebe1bccc26f28e8d6588623.tar.gz
rneovim-2ff5189d68e9e9ec8ebe1bccc26f28e8d6588623.tar.bz2
rneovim-2ff5189d68e9e9ec8ebe1bccc26f28e8d6588623.zip
chore: fix compiler warning for multi-line comment (#16812)
-rw-r--r--src/nvim/indent_c.c2
1 files changed, 1 insertions, 1 deletions
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);