From 4e77eec7877b4596d834d751802818b28cf9ebc0 Mon Sep 17 00:00:00 2001 From: Kristaps Dzonsons Date: Sun, 12 Jul 2009 08:49:50 +0000 Subject: Noted dissent with \- for OpenBSD. --- mdoc_term.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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 -- cgit