=================================================================== RCS file: /cvs/mandoc/mdoc_term.c,v retrieving revision 1.40 retrieving revision 1.41 diff -u -p -r1.40 -r1.41 --- mandoc/mdoc_term.c 2009/07/14 15:49:44 1.40 +++ mandoc/mdoc_term.c 2009/07/14 16:03:51 1.41 @@ -1,4 +1,4 @@ -/* $Id: mdoc_term.c,v 1.40 2009/07/14 15:49:44 kristaps Exp $ */ +/* $Id: mdoc_term.c,v 1.41 2009/07/14 16:03:51 kristaps Exp $ */ /* * Copyright (c) 2008, 2009 Kristaps Dzonsons * @@ -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