match="abstract" template is trying to use it with such
a parameter.
<xsl:template name="formal.object.heading">
<xsl:param name="object" select="."/>
+ <xsl:param name="title">
+ <xsl:apply-templates select="$object" mode="object.title.markup">
+ <xsl:with-param name="allow-anchors" select="1"/>
+ </xsl:apply-templates>
+ </xsl:param>
+
<p class="title">
<b>
- <xsl:apply-templates select="$object" mode="object.title.markup">
- <xsl:with-param name="allow-anchors" select="1"/>
- </xsl:apply-templates>
+ <xsl:copy-of select="$title"/>
</b>
</p>
</xsl:template>