From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from krisdoz.my.domain (schwarze@localhost [127.0.0.1]) by krisdoz.my.domain (8.14.3/8.14.3) with ESMTP id o9NNVA27016302 for ; Sat, 23 Oct 2010 19:31:10 -0400 (EDT) Received: (from schwarze@localhost) by krisdoz.my.domain (8.14.3/8.14.3/Submit) id o9NNVABb019751; Sat, 23 Oct 2010 19:31:10 -0400 (EDT) Date: Sat, 23 Oct 2010 19:31:10 -0400 (EDT) Message-Id: <201010232331.o9NNVABb019751@krisdoz.my.domain> X-Mailinglist: mdocml-source Reply-To: source@mdocml.bsd.lv MIME-Version: 1.0 From: schwarze@mdocml.bsd.lv To: source@mdocml.bsd.lv Subject: mdocml: let .Bsx print just "BSD/OS" like in modern groff from Ulrich X-Mailer: activitymail 1.26, http://search.cpan.org/dist/activitymail/ Content-Type: text/plain; charset=utf-8 Log Message: ----------- let .Bsx print just "BSD/OS" like in modern groff from Ulrich Spoerlein Modified Files: -------------- mdocml: mdoc_html.c mdoc_term.c Revision Data ------------- Index: mdoc_html.c =================================================================== RCS file: /usr/vhosts/mdocml.bsd.lv/cvs/mdocml/mdoc_html.c,v retrieving revision 1.111 retrieving revision 1.112 diff -Lmdoc_html.c -Lmdoc_html.c -u -p -r1.111 -r1.112 --- mdoc_html.c +++ 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"; Index: mdoc_term.c =================================================================== RCS file: /usr/vhosts/mdocml.bsd.lv/cvs/mdocml/mdoc_term.c,v retrieving revision 1.193 retrieving revision 1.194 diff -Lmdoc_term.c -Lmdoc_term.c -u -p -r1.193 -r1.194 --- mdoc_term.c +++ 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"; -- To unsubscribe send an email to source+unsubscribe@mdocml.bsd.lv