From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from acme.spoerlein.net (acme.spoerlein.net [188.72.220.29]) by krisdoz.my.domain (8.14.3/8.14.3) with ESMTP id o9L8OgUU012501 for ; Thu, 21 Oct 2010 04:24:43 -0400 (EDT) Received: from acme.spoerlein.net (localhost.spoerlein.net [IPv6:::1]) by acme.spoerlein.net (8.14.4/8.14.4) with ESMTP id o9L8OeXF055911 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO) for ; Thu, 21 Oct 2010 10:24:40 +0200 (CEST) (envelope-from uqs@spoerlein.net) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=spoerlein.net; s=dkim200908; t=1287649480; bh=ezfW+i8OdUSBtNiwTKKcddASa2GCKPYpwqbn/1Ii2Mw=; h=Date:From:To:Subject:Message-ID:MIME-Version:Content-Type; b=n7cSmv1ccKXi+nAd/XCy/s9+7vn6WUjxjV8dYrZJDqIgkolfBgyFsootE1Mjx0agk GMABmx3KUT4GKcJ+WlrHQ4bSZgyv7tVIlKiVqeHo7F5+BoKxgef0Hfm10WxvO0DcvC Fsbd7XZS/YJkx73+W+NaIPfYhmerggM1LrFsy6Og= Received: (from uqs@localhost) by acme.spoerlein.net (8.14.4/8.14.4/Submit) id o9L8Oe6N055910 for discuss@mdocml.bsd.lv; Thu, 21 Oct 2010 10:24:40 +0200 (CEST) (envelope-from uqs@spoerlein.net) Date: Thu, 21 Oct 2010 10:24:40 +0200 From: Ulrich =?utf-8?B?U3DDtnJsZWlu?= To: discuss@mdocml.bsd.lv Subject: [PATCH] .Bsx should print "BSD/OS" only Message-ID: <20101021082440.GA55872@acme.spoerlein.net> X-Mailinglist: mdocml-discuss Reply-To: discuss@mdocml.bsd.lv MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="T4sUOijqQbZv57TR" Content-Disposition: inline User-Agent: Mutt/1.5.21 (2010-09-15) --T4sUOijqQbZv57TR Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Hi folks, subject says it, groff does it, attached patch fixes it. Please note, that there are manpages out there, that go like this: This manual page was written by [...] with inspiration from BSDi's .Bsx .Xr elf 5 manpage. And as you can see, having Bsx display BSDI again is rather redundant. Thanks, Uli --T4sUOijqQbZv57TR Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="bsdos.diff" Index: mdoc_html.c =================================================================== RCS file: /usr/vhosts/mdocml.bsd.lv/cvs/mdocml/mdoc_html.c,v retrieving revision 1.111 diff -u -p -r1.111 mdoc_html.c --- mdoc_html.c 10 Oct 2010 09:59:48 -0000 1.111 +++ mdoc_html.c 21 Oct 2010 08:21:29 -0000 @@ -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 diff -u -p -r1.193 mdoc_term.c --- mdoc_term.c 10 Oct 2010 09:59:48 -0000 1.193 +++ mdoc_term.c 21 Oct 2010 08:21:29 -0000 @@ -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"; --T4sUOijqQbZv57TR-- -- To unsubscribe send an email to discuss+unsubscribe@mdocml.bsd.lv