mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2024-11-24 07:20:37 +00:00
(C_entries): Don't reset definedef when a newline inside a comment is met.
This commit is contained in:
parent
1ba3de0010
commit
57e83cfeff
@ -1672,7 +1672,14 @@ C_entries (c_ext)
|
||||
/* Detect end of line, after having handled the last token on the line. */
|
||||
if (c == 0)
|
||||
{
|
||||
CNL;
|
||||
if (incomm)
|
||||
{
|
||||
CNL_SAVE_DEFINEDEF;
|
||||
}
|
||||
else
|
||||
{
|
||||
CNL;
|
||||
}
|
||||
gotone = FALSE;
|
||||
}
|
||||
if (c == ';' && tydef == end) /* clean with typedefs */
|
||||
|
Loading…
Reference in New Issue
Block a user