diff options
author | Ingo Schwarze <schwarze@openbsd.org> | 2010-10-23 23:31:10 +0000 |
---|---|---|
committer | Ingo Schwarze <schwarze@openbsd.org> | 2010-10-23 23:31:10 +0000 |
commit | 6507f89f8de701d2bd4bfc177fb036d51cba2487 (patch) | |
tree | ba1ad4b1030e378e99d6bada3e07f9a770249661 /mdoc_term.c | |
parent | ca0c4ef6395f118388355644bf310943bd923659 (diff) | |
download | mandoc-6507f89f8de701d2bd4bfc177fb036d51cba2487.tar.gz |
let .Bsx print just "BSD/OS" like in modern groff
from Ulrich Spoerlein <uqs at spoerlein dot net>
Diffstat (limited to 'mdoc_term.c')
-rw-r--r-- | mdoc_term.c | 2 |
1 files changed, 1 insertions, 1 deletions
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"; |