summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Burrows <dburrows@debian.org>2008-06-07 16:30:29 -0700
committerDaniel Burrows <dburrows@debian.org>2008-06-07 16:30:29 -0700
commite2572bbec80f96bc9f7dd1c0d4416c9a63e90e2d (patch)
treefb9d9de8cba12a88c91d6bf509412a9ce0eea0e2
parent462917f59598ab02c483c527276e52493526bb13 (diff)
downloadaptitude-e2572bbec80f96bc9f7dd1c0d4416c9a63e90e2d.tar.gz
Fix the XSL template that makes literal text bold. (Closes: #473580)
In addition to making literal text bold again, this also causes the literal occurrences of ".deb" to not be interpreted as groff escapes.
-rw-r--r--doc/aptitude-man.xsl5
1 files changed, 4 insertions, 1 deletions
diff --git a/doc/aptitude-man.xsl b/doc/aptitude-man.xsl
index 410112b9..1ff015e8 100644
--- a/doc/aptitude-man.xsl
+++ b/doc/aptitude-man.xsl
@@ -19,7 +19,10 @@
<xsl:template match="literal">
- <xsl:apply-templates mode="bold" select="."/>
+ <xsl:call-template name="bold">
+ <xsl:with-param name="node" select="."/>
+ <xsl:with-param name="context" select="."/>
+ </xsl:call-template>
</xsl:template>
<xsl:param name="preferred.mediaobject.role">text</xsl:param>