diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2009-07-14 16:03:51 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2009-07-14 16:03:51 +0000 |
commit | a6a3c5fe418c18611afdc37e22c1bcf37c39d246 (patch) | |
tree | 4f9217b88b4d5818b443cf5877e6de9395e95013 /mdoc_term.c | |
parent | 72c11849f371ceb1440919916958c11516185ef0 (diff) | |
download | mandoc-a6a3c5fe418c18611afdc37e22c1bcf37c39d246.tar.gz |
Using \(en for OpenBSD `Nd' (compromise with jmc@openbsd.org).VERSION.1.8.0
Diffstat (limited to 'mdoc_term.c')
-rw-r--r-- | mdoc_term.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/mdoc_term.c b/mdoc_term.c index a23bb33a..cb13f110 100644 --- a/mdoc_term.c +++ b/mdoc_term.c @@ -1140,13 +1140,8 @@ termp_nd_pre(DECL_ARGS) if (MDOC_BODY != node->type) return(1); - /* - * 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. - */ #if defined(__OpenBSD__) || defined(__linux__) - term_word(p, "\\-"); + term_word(p, "\\(en"); #else term_word(p, "\\(em"); #endif |