diff options
author | Hans Bolinder <[email protected]> | 2011-12-01 09:42:12 +0100 |
---|---|---|
committer | Hans Bolinder <[email protected]> | 2011-12-01 09:42:12 +0100 |
commit | a5d542cfb573a182eea2ac464961ab1902bb1441 (patch) | |
tree | eb51fa05307e728e7533af99662849f7c62919c5 /lib/erl_docgen | |
parent | 40653b86e7812fcbcdc73f2becdfbcc43f8814e7 (diff) | |
download | otp-a5d542cfb573a182eea2ac464961ab1902bb1441.tar.gz otp-a5d542cfb573a182eea2ac464961ab1902bb1441.tar.bz2 otp-a5d542cfb573a182eea2ac464961ab1902bb1441.zip |
Fix a bug in the generation of manpages
User defined data types in function headers turned off bold face.
Diffstat (limited to 'lib/erl_docgen')
-rw-r--r-- | lib/erl_docgen/priv/xsl/db_man.xsl | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/lib/erl_docgen/priv/xsl/db_man.xsl b/lib/erl_docgen/priv/xsl/db_man.xsl index 0aca74bc97..5234ba6bd0 100644 --- a/lib/erl_docgen/priv/xsl/db_man.xsl +++ b/lib/erl_docgen/priv/xsl/db_man.xsl @@ -586,7 +586,15 @@ </xsl:template> <xsl:template match="seealso"> - <xsl:text>\fB</xsl:text><xsl:apply-templates/><xsl:text>\fR\&</xsl:text> + <xsl:choose> + <xsl:when test="ancestor::head"> + <!-- The header of Dialyzer specs --> + <xsl:apply-templates/> + </xsl:when> + <xsl:otherwise> + <xsl:text>\fB</xsl:text><xsl:apply-templates/><xsl:text>\fR\&</xsl:text> + </xsl:otherwise> + </xsl:choose> </xsl:template> <!-- Code --> |