diff options
author | Hans Bolinder <[email protected]> | 2012-07-05 10:19:00 +0200 |
---|---|---|
committer | Hans Bolinder <[email protected]> | 2012-07-11 08:15:11 +0200 |
commit | fcf0e43a4fe06fc3f44fbff96ee42378a479d35f (patch) | |
tree | 27de2f78e8a59b8dc60392641631c5e7cf60fff2 /lib/erl_docgen/priv/xsl/db_pdf.xsl | |
parent | eac9c3494ce4d684b09779f075317e8943a7928b (diff) | |
download | otp-fcf0e43a4fe06fc3f44fbff96ee42378a479d35f.tar.gz otp-fcf0e43a4fe06fc3f44fbff96ee42378a479d35f.tar.bz2 otp-fcf0e43a4fe06fc3f44fbff96ee42378a479d35f.zip |
Fix a bug regarding spaces in C function prototypes
Thanks to Richard O'Keefe for pointing the bug out.
Diffstat (limited to 'lib/erl_docgen/priv/xsl/db_pdf.xsl')
-rw-r--r-- | lib/erl_docgen/priv/xsl/db_pdf.xsl | 20 |
1 files changed, 18 insertions, 2 deletions
diff --git a/lib/erl_docgen/priv/xsl/db_pdf.xsl b/lib/erl_docgen/priv/xsl/db_pdf.xsl index bf17406d84..da96052462 100644 --- a/lib/erl_docgen/priv/xsl/db_pdf.xsl +++ b/lib/erl_docgen/priv/xsl/db_pdf.xsl @@ -3,7 +3,7 @@ # # %CopyrightBegin% # - # Copyright Ericsson AB 2009-2011. All Rights Reserved. + # Copyright Ericsson AB 2009-2012. All Rights Reserved. # # The contents of this file are subject to the Erlang Public License, # Version 1.1, (the "License"); you may not use this file except in @@ -1424,7 +1424,13 @@ <xsl:param name="partnum"/> <xsl:choose> <xsl:when test="ancestor::cref"> - <fo:block id="{generate-id(nametext)}"><xsl:value-of select="ret"/><xsl:text></xsl:text><xsl:value-of select="nametext"/></fo:block> + <fo:block id="{generate-id(nametext)}"> + <xsl:value-of select="ret"/> + <xsl:call-template name="maybe-space-after-ret"> + <xsl:with-param name="s" select="ret"/> + </xsl:call-template> + <xsl:value-of select="nametext"/> + </fo:block> </xsl:when> <xsl:otherwise> <fo:block id="{generate-id(.)}"><xsl:value-of select="."/></fo:block> @@ -1432,6 +1438,16 @@ </xsl:choose> </xsl:template> + <xsl:template name="maybe-space-after-ret"> + <xsl:param name="s"/> + <xsl:variable name="last_char" + select="substring($s, string-length($s), 1)"/> + <xsl:choose> + <xsl:when test="$last_char != '*'"> + <xsl:text> </xsl:text> + </xsl:when> + </xsl:choose> + </xsl:template> <!-- Type --> <xsl:template match="type"> |