aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2009-07-12 08:49:50 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2009-07-12 08:49:50 +0000
commitf4126de626c0004e633d89ab7d6750d70ddd85a9 (patch)
tree8c242d7b4ffe78977f1df168ceb31fe9230fd4bd
parentf3d3e53ced24d5eca5ddd302b0b4a32c119728bc (diff)
downloadmandoc-f4126de626c0004e633d89ab7d6750d70ddd85a9.tar.gz
mandoc-f4126de626c0004e633d89ab7d6750d70ddd85a9.tar.zst
mandoc-f4126de626c0004e633d89ab7d6750d70ddd85a9.zip
Noted dissent with \- for OpenBSD.
-rw-r--r--mdoc_term.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/mdoc_term.c b/mdoc_term.c
index cecdb9ce..205a44d8 100644
--- a/mdoc_term.c
+++ b/mdoc_term.c
@@ -1,4 +1,4 @@
-/* $Id: mdoc_term.c,v 1.23 2009/07/12 08:45:56 kristaps Exp $ */
+/* $Id: mdoc_term.c,v 1.24 2009/07/12 08:49:50 kristaps Exp $ */
/*
* Copyright (c) 2008, 2009 Kristaps Dzonsons <kristaps@kth.se>
*
@@ -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