summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorIngo Schwarze <schwarze@openbsd.org>2010-10-23 23:31:10 +0000
committerIngo Schwarze <schwarze@openbsd.org>2010-10-23 23:31:10 +0000
commit6507f89f8de701d2bd4bfc177fb036d51cba2487 (patch)
treeba1ad4b1030e378e99d6bada3e07f9a770249661
parentca0c4ef6395f118388355644bf310943bd923659 (diff)
downloadmandoc-6507f89f8de701d2bd4bfc177fb036d51cba2487.tar.gz
let .Bsx print just "BSD/OS" like in modern groff
from Ulrich Spoerlein <uqs at spoerlein dot net>
-rw-r--r--mdoc_html.c2
-rw-r--r--mdoc_term.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/mdoc_html.c b/mdoc_html.c
index 6f5c8a81..2edcf9e7 100644
--- a/mdoc_html.c
+++ b/mdoc_html.c
@@ -843,7 +843,7 @@ mdoc_xx_pre(MDOC_ARGS)
switch (n->tok) {
case (MDOC_Bsx):
- pp = "BSDI BSD/OS";
+ pp = "BSD/OS";
break;
case (MDOC_Dx):
pp = "DragonFly";
diff --git a/mdoc_term.c b/mdoc_term.c
index d7e11f86..ff54d2fb 100644
--- a/mdoc_term.c
+++ b/mdoc_term.c
@@ -1657,7 +1657,7 @@ termp_xx_pre(DECL_ARGS)
pp = NULL;
switch (n->tok) {
case (MDOC_Bsx):
- pp = "BSDI BSD/OS";
+ pp = "BSD/OS";
break;
case (MDOC_Dx):
pp = "DragonFly";