From 5481ea4cd482de8edcac0994e3b7fd3d796e202d Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Tue, 30 Apr 2024 21:35:35 -0400 Subject: [PATCH] wikiheaders: manpages See Also sections should specify 3 vs 3type. --- build-scripts/wikiheaders.pl | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/build-scripts/wikiheaders.pl b/build-scripts/wikiheaders.pl index 687a7efc4f..737a83547f 100755 --- a/build-scripts/wikiheaders.pl +++ b/build-scripts/wikiheaders.pl @@ -2003,7 +2003,12 @@ if ($copy_direction == 1) { # --copy-to-headers s/\A\s+//; s/\s+\Z//; next if $_ eq ''; - $str .= "$nextstr.BR $_ (3)"; + my $seealso_symtype = $headersymstype{$_}; + my $seealso_mansection = '3'; + if (defined($seealso_symtype) && ($seealso_symtype >= 3) && ($seealso_symtype <= 5)) { # struct/union/enum/typedef + $seealso_mansection = '3type'; + } + $str .= "$nextstr.BR $_ ($seealso_mansection)"; $nextstr = ",\n"; } $str .= "\n";