* [PATCH] docs: kdoc: Make body_with_blank_line parsing more flexible
@ 2025-06-10 14:19 Jonathan Corbet
0 siblings, 0 replies; only message in thread
From: Jonathan Corbet @ 2025-06-10 14:19 UTC (permalink / raw)
To: linux-doc; +Cc: Mauro Carvalho Chehab
The regex in the BODY_WITH_BLANK_LINE case was looking for lines starting
with " * ", where exactly one space was allowed before the following text.
There are many kerneldoc comments where the authors have put multiple
spaces instead, leading to mis-formatting of the documentation.
Specifically, in this case, the description portion is associated with the
last of the parameters.
Allow multiple spaces in this context.
See, for example, synchronize_hardirq() and how its documentation is
formatted before and after the change.
Signed-off-by: Jonathan Corbet <corbet@lwn.net>
---
Unlike my other kernel-doc changes, this one does result in changed
output, but the result is clearly (IMO) more correct.
scripts/lib/kdoc/kdoc_parser.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/scripts/lib/kdoc/kdoc_parser.py b/scripts/lib/kdoc/kdoc_parser.py
index 9a1ce6ed8605..294f5d032b3d 100644
--- a/scripts/lib/kdoc/kdoc_parser.py
+++ b/scripts/lib/kdoc/kdoc_parser.py
@@ -1301,7 +1301,7 @@ class KernelDoc:
"""
if self.state == state.BODY_WITH_BLANK_LINE:
- r = KernRe(r"\s*\*\s?\S")
+ r = KernRe(r"\s*\*\s*\S")
if r.match(line):
self.dump_section()
self.entry.section = SECTION_DEFAULT
--
2.49.0
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2025-06-10 14:28 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-06-10 14:19 [PATCH] docs: kdoc: Make body_with_blank_line parsing more flexible Jonathan Corbet
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).