wikiheaders: manpages See Also sections should specify 3 vs 3type.

(cherry picked from commit 5481ea4cd4)
This commit is contained in:
Ryan C. Gordon
2024-04-30 21:35:35 -04:00
parent 2f54d8a458
commit 59937e0fd5

View File

@@ -1974,7 +1974,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";