1917. [doc] funcsynopsisinfo wasn't being treated as verbatim

when generating man pages. [RT #15385]
This commit is contained in:
Mark Andrews 2005-09-12 00:01:26 +00:00
parent 72bdbe3c70
commit 49732e4d60
2 changed files with 14 additions and 1 deletions

View file

@ -1,3 +1,6 @@
1917. [doc] funcsynopsisinfo wasn't being treated as verbatim
when generating man pages. [RT #15385]
1916. [func] Integrate contibuted IDN code from JPNIC. [RT #15383]
1915. [bug] dig +ndots was broken. [RT #15215]

View file

@ -14,7 +14,7 @@
- PERFORMANCE OF THIS SOFTWARE.
-->
<!-- $Id: isc-manpage.xsl.in,v 1.5 2005/05/13 01:35:44 marka Exp $ -->
<!-- $Id: isc-manpage.xsl.in,v 1.6 2005/09/12 00:01:26 marka Exp $ -->
<!-- ISC customizations for Docbook-XSL manual page generator. -->
@ -125,6 +125,16 @@
<xsl:apply-templates/>
</xsl:template>
<!--
- Override template to change formatting.
- Line breaks in funcsynopsisinfo are significant.
-->
<xsl:template match="funcsynopsisinfo">
<xsl:text>&#10;.nf&#10;</xsl:text>
<xsl:apply-templates/>
<xsl:text>&#10;.fi&#10;</xsl:text>
</xsl:template>
</xsl:stylesheet>
<!--