mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 22:08:16 -05:00
a373462233
* gnu/packages/docbook.scm (docbook2x)[source]: Import patches from debian. Prefer patching in source over 'patch-sources phase. Drop docbook-xml workaround. [arguments]<#:phases>: Drop 'patch-sources. [inputs]: Move after arguments. Remove docbook-xml-4.5. [natine-inputs]: Add autoconf, automake and libtool. * gnu/packages/patches/docbook2x-filename-handling.patch: New file. * gnu/packages/patches/docbook2x-fix-synopsis.patch: Ditto. * gnu/packages/patches/docbook2x-manpage-typo.patch: Ditto. * gnu/packages/patches/docbook2x-preprocessor-declaration.patch: Ditto. * gnu/packages/patches/docbook2x-static-datadir-evaluation.patch: Ditto. * gnu/local.mk: Register it. Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
26 lines
796 B
Diff
26 lines
796 B
Diff
# Source: <https://sources.debian.org/patches/docbook2x/0.8.8-18/07_Fix-hyphens-in-commands-and-options-in-synopsis.patch/>
|
|
|
|
From 06944d2bf8aa761ec6c145c964e59c3b1f41d7a5 Mon Sep 17 00:00:00 2001
|
|
From: Samuel Thibault <sthibault@debian.org>
|
|
Date: Wed, 6 Sep 2023 21:48:59 +0200
|
|
Subject: man: Fix hyphens in commands and options in synopsis
|
|
|
|
diff --git a/xslt/man/synop.xsl b/xslt/man/synop.xsl
|
|
index 9713a1b..e535b75 100644
|
|
--- a/xslt/man/synop.xsl
|
|
+++ b/xslt/man/synop.xsl
|
|
@@ -107,9 +107,9 @@
|
|
<xsl:call-template name="cmdsynopsis-gentext-sepchar" />
|
|
</xsl:if>
|
|
|
|
- <b>
|
|
+ <xsl:call-template name="inline-bold-monospace">
|
|
<xsl:apply-templates mode="cmdsynopsis" />
|
|
- </b>
|
|
+ </xsl:call-template>
|
|
</xsl:template>
|
|
|
|
<xsl:template match="replaceable" mode="cmdsynopsis">
|
|
--
|
|
2.34.1
|
|
|