summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2009-07-12 08:49:50 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2009-07-12 08:49:50 +0000
commit4e77eec7877b4596d834d751802818b28cf9ebc0 (patch)
tree9ed43778d99dc21a4eba29ef581c0f548cc4cca1
parent75ff01a8b81fe18b03343d9dd6b5a0f8321641e9 (diff)
downloadmandoc-4e77eec7877b4596d834d751802818b28cf9ebc0.tar.gz
Noted dissent with \- for OpenBSD.
-rw-r--r--mdoc_term.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/mdoc_term.c b/mdoc_term.c
index 866b2380..3cc580d2 100644
--- a/mdoc_term.c
+++ b/mdoc_term.c
@@ -1134,7 +1134,11 @@ termp_ex_pre(DECL_ARGS)
static int
termp_nd_pre(DECL_ARGS)
{
-
+ /*
+ * XXX: signed off by jmc@openbsd.org. This technically
+ * produces a minus sign after the Nd, which is wrong, but is
+ * consistent with the historic OpenBSD tmac file.
+ */
#ifdef __OpenBSD__
term_word(p, "\\-");
#else