Use Sy instead of Em for deprecated / experimental notices.

git-svn-id: svn+ssh://svn.openpam.org/svn/openpam/trunk@599 185d5e19-27fe-0310-9dcf-9bff6b9f3609
This commit is contained in:
Dag-Erling Smørgrav 2012-04-14 15:06:41 +00:00
parent 1c59e86945
commit aa1f7162f1
1 changed files with 3 additions and 3 deletions

View File

@ -487,7 +487,7 @@ sub gendoc($) {
.Sh DESCRIPTION
";
if (defined($func->{'deprecated'})) {
$mdoc .= ".Bf Em\n" .
$mdoc .= ".Bf Sy\n" .
"This function is deprecated and may be removed " .
"in a future release without further warning.\n";
if ($func->{'deprecated'}) {
@ -497,8 +497,8 @@ sub gendoc($) {
$mdoc .= ".Ef\n.Pp\n";
}
if ($func->{'experimental'}) {
$mdoc .= ".Bf Em\n" .
"This function is experimental and may be modified or removed" .
$mdoc .= ".Bf Sy\n" .
"This function is experimental and may be modified or removed " .
"in a future release without further warning.\n";
$mdoc .= ".Ef\n.Pp\n";
}