Git fork

manpage-bold-literal.xsl: stop using git.docbook.backslash

We used to assign git.docbook.backslash one of two different values --
one "normal" and one for working around a problem with docbook-xsl 1.72.
After the previous commit, we don't support that version anymore and
always use the "normal" value, a literal backslash.

Just explicitly use a backslash instead of using git.docbook.backslash.
The next commit will drop the definition of git.docbook.backslash
entirely.

Signed-off-by: Martin Ågren <martin.agren@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>

authored by

Martin Ågren and committed by
Junio C Hamano
4344be05 388f5b52

+2 -4
+2 -4
Documentation/manpage-bold-literal.xsl
··· 8 8 this makes literal text easier to distinguish in manpages 9 9 viewed on a tty --> 10 10 <xsl:template match="literal|d:literal"> 11 - <xsl:value-of select="$git.docbook.backslash"/> 12 - <xsl:text>fB</xsl:text> 11 + <xsl:text>\fB</xsl:text> 13 12 <xsl:apply-templates/> 14 - <xsl:value-of select="$git.docbook.backslash"/> 15 - <xsl:text>fR</xsl:text> 13 + <xsl:text>\fR</xsl:text> 16 14 </xsl:template> 17 15 18 16 </xsl:stylesheet>