This is an automated email from the ASF dual-hosted git repository. GUIDINGLI pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/nuttx.git
commit 0e04c1688760f44cbad32c920747912c6b60e06d Author: Old-Ding <[email protected]> AuthorDate: Sat Jul 18 10:07:36 2026 +0800 tools: kconfig2html: Explain blank-line guard Explain why the guard runs before checking for a continuation marker. Signed-off-by: Old-Ding <[email protected]> --- tools/kconfig2html.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tools/kconfig2html.c b/tools/kconfig2html.c index 1ec003ef505..001d9b96edd 100644 --- a/tools/kconfig2html.c +++ b/tools/kconfig2html.c @@ -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;
