From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp-1.sys.kth.se (smtp-1.sys.kth.se [130.237.32.175]) by krisdoz.my.domain (8.14.3/8.14.3) with ESMTP id p3KBkUbZ016533 for ; Wed, 20 Apr 2011 07:46:31 -0400 (EDT) Received: from mailscan-1.sys.kth.se (mailscan-1.sys.kth.se [130.237.32.91]) by smtp-1.sys.kth.se (Postfix) with ESMTP id 7F137157974; Wed, 20 Apr 2011 13:46:24 +0200 (CEST) X-Virus-Scanned: by amavisd-new at kth.se Received: from smtp-1.sys.kth.se ([130.237.32.175]) by mailscan-1.sys.kth.se (mailscan-1.sys.kth.se [130.237.32.91]) (amavisd-new, port 10024) with LMTP id 3jYjo1CUgmo9; Wed, 20 Apr 2011 13:46:21 +0200 (CEST) X-KTH-Auth: kristaps [193.10.49.5] X-KTH-mail-from: kristaps@bsd.lv Received: from [172.16.18.84] (unknown [193.10.49.5]) by smtp-1.sys.kth.se (Postfix) with ESMTP id BA9B6157BCA; Wed, 20 Apr 2011 13:46:20 +0200 (CEST) Message-ID: <4DAEC78B.6030002@bsd.lv> Date: Wed, 20 Apr 2011 13:46:19 +0200 From: Kristaps Dzonsons User-Agent: Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.1.16) Gecko/20110303 Icedove/3.0.11 X-Mailinglist: mdocml-tech Reply-To: tech@mdocml.bsd.lv MIME-Version: 1.0 To: tech@mdocml.bsd.lv, jmc@openbsd.org Subject: [PATCH] \*(Px and \*(Ai Content-Type: multipart/mixed; boundary="------------030203030501070206070307" This is a multi-part message in MIME format. --------------030203030501070206070307 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Hi, As discussed on tech@openbsd.org, http://comments.gmane.org/gmane.os.openbsd.tech/24663 we're missing two symbols defined in tmac.doc. The enclosed patch includes them (not the documentation bits for mandoc_char.7, which I'd include if this is ok'd). For the record, I don't particularly like these as they discourage using `St' in favour of hand-rolling standards. I think this should be taken into account when deciding on whether to ok this. So... thoughts? Kristaps --------------030203030501070206070307 Content-Type: text/plain; name="patch.chars.txt" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="patch.chars.txt" Index: chars.c =================================================================== RCS file: /usr/vhosts/mdocml.bsd.lv/cvs/mdocml/chars.c,v retrieving revision 1.34 diff -u -r1.34 chars.c --- chars.c 22 Mar 2011 10:13:01 -0000 1.34 +++ chars.c 20 Apr 2011 11:41:48 -0000 @@ -41,7 +41,7 @@ #define CHARS_BOTH (CHARS_CHAR | CHARS_STRING) }; -#define LINES_MAX 351 +#define LINES_MAX 353 #define CHAR(in, ch, code) \ { NULL, (in), (ch), (code), CHARS_CHAR }, Index: chars.in =================================================================== RCS file: /usr/vhosts/mdocml.bsd.lv/cvs/mdocml/chars.in,v retrieving revision 1.36 diff -u -r1.36 chars.in --- chars.in 16 Mar 2011 22:49:55 -0000 1.36 +++ chars.in 20 Apr 2011 11:41:48 -0000 @@ -375,6 +375,8 @@ STRING("right-singlequote", "\'", 8217) STRING("rp", ")", 41) STRING("Tm", "(Tm)", 8482) +STRING("Px", "POSIX", 0) +STRING("Ai", "ANSI", 0) /* Lines. */ CHAR("ba", "|", 124) --------------030203030501070206070307-- -- To unsubscribe send an email to tech+unsubscribe@mdocml.bsd.lv