diff options
author | Jonathan Corbet <corbet@lwn.net> | 2016-08-26 07:14:08 -0600 |
---|---|---|
committer | Jonathan Corbet <corbet@lwn.net> | 2016-09-06 08:02:19 -0600 |
commit | ef00028b20481647431ca8bffe5469fb86cf154f (patch) | |
tree | d5ce9fd8f4525b71761a41cbb97881aa05c315e3 /scripts | |
parent | 9d9cce7f10dc8d7a5fc6ef4e537e17664234605a (diff) | |
download | op-kernel-dev-ef00028b20481647431ca8bffe5469fb86cf154f.zip op-kernel-dev-ef00028b20481647431ca8bffe5469fb86cf154f.tar.gz |
docs: make kernel-doc handle varargs properly
As far as I can tell, the handling of "..." arguments has never worked
right, so any documentation provided was ignored in favor of "variable
arguments." This makes kernel-doc handle "@...:" as documented. It does
*not* fix spots in kerneldoc comments that don't follow that convention,
but they are no more broken than before.
Signed-off-by: Jonathan Corbet <corbet@lwn.net>
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/kernel-doc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/kernel-doc b/scripts/kernel-doc index 301bf87..c591895 100755 --- a/scripts/kernel-doc +++ b/scripts/kernel-doc @@ -412,7 +412,7 @@ my $doc_com_body = '\s*\* ?'; my $doc_decl = $doc_com . '(\w+)'; # @params and a strictly limited set of supported section names my $doc_sect = $doc_com . - '\s*(\@\w+|description|context|returns?|notes?|examples?)\s*:(.*)'; + '\s*(\@[.\w]+|\@\.\.\.|description|context|returns?|notes?|examples?)\s*:(.*)'; my $doc_content = $doc_com_body . '(.*)'; my $doc_block = $doc_com . 'DOC:\s*(.*)?'; my $doc_inline_start = '^\s*/\*\*\s*$'; @@ -2351,6 +2351,7 @@ sub push_parameter($$$) { if ($type eq "" && $param =~ /\.\.\.$/) { + $param = "..."; if (!defined $parameterdescs{$param} || $parameterdescs{$param} eq "") { $parameterdescs{$param} = "variable arguments"; } |