diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2009-07-12 08:49:50 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2009-07-12 08:49:50 +0000 |
commit | 4e77eec7877b4596d834d751802818b28cf9ebc0 (patch) | |
tree | 9ed43778d99dc21a4eba29ef581c0f548cc4cca1 /mdoc_term.c | |
parent | 75ff01a8b81fe18b03343d9dd6b5a0f8321641e9 (diff) | |
download | mandoc-4e77eec7877b4596d834d751802818b28cf9ebc0.tar.gz |
Noted dissent with \- for OpenBSD.
Diffstat (limited to 'mdoc_term.c')
-rw-r--r-- | mdoc_term.c | 6 |
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 |