tools: kconfig2html: Explain blank-line guard

Explain why the guard runs before checking for a continuation marker.

Signed-off-by: Old-Ding <35417409+Old-Ding@users.noreply.github.com>
This commit is contained in:
Old-Ding 2026-07-18 10:07:36 +08:00
parent c4d0fb4ca3
commit 9094795bba

View file

@ -702,6 +702,8 @@ static char *read_line(FILE *stream)
g_line[len] = '\0';
}
/* A blank line has no continuation marker to inspect. */
if (len == 0)
{
g_lnptr = g_line;