1
0
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:
Richard M. Stallman 1993-02-23 07:27:39 +00:00
parent 1ba3de0010
commit 57e83cfeff

View File

@ -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 */