mirror of
https://github.com/neovim/neovim.git
synced 2025-09-29 22:48:34 +00:00
chore: fix compiler warning for multi-line comment (#16812)
This commit is contained in:
@@ -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)) {
|
if (*s == ')' && cin_nocode(s + 1)) {
|
||||||
// ')' at the end: may have found a match
|
// ')' at the end: may have found a match
|
||||||
// Check for the previous line not to end in a backslash:
|
// Check for the previous line not to end in a backslash:
|
||||||
// #if defined(x) && \
|
// #if defined(x) && {backslash}
|
||||||
// defined(y)
|
// defined(y)
|
||||||
lnum = first_lnum - 1;
|
lnum = first_lnum - 1;
|
||||||
s = ml_get(lnum);
|
s = ml_get(lnum);
|
||||||
|
Reference in New Issue
Block a user