=================================================================== RCS file: /cvs/mandoc/mdoc_term.c,v retrieving revision 1.40 retrieving revision 1.42 diff -u -p -r1.40 -r1.42 --- mandoc/mdoc_term.c 2009/07/14 15:49:44 1.40 +++ mandoc/mdoc_term.c 2009/07/15 08:20:43 1.42 @@ -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.42 2009/07/15 08:20:43 kristaps Exp $ */ /* * Copyright (c) 2008, 2009 Kristaps Dzonsons * @@ -407,7 +407,7 @@ print_foot(struct termp *p, const struct mdoc_meta *me tm = localtime(&meta->date); - if (0 == strftime(buf, p->rmargin, "%B %d, %Y", tm)) + if (0 == strftime(buf, p->rmargin, "%B %e, %Y", tm)) err(1, "strftime"); (void)strlcpy(os, meta->os, p->rmargin); @@ -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