From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from krisdoz.my.domain (kristaps@localhost [127.0.0.1]) by krisdoz.my.domain (8.14.3/8.14.3) with ESMTP id o6JBBsH9032551 for ; Mon, 19 Jul 2010 07:11:55 -0400 (EDT) Received: (from kristaps@localhost) by krisdoz.my.domain (8.14.3/8.14.3/Submit) id o6JBBsWX008524; Mon, 19 Jul 2010 07:11:54 -0400 (EDT) Date: Mon, 19 Jul 2010 07:11:54 -0400 (EDT) Message-Id: <201007191111.o6JBBsWX008524@krisdoz.my.domain> X-Mailinglist: mdocml-source Reply-To: source@mdocml.bsd.lv MIME-Version: 1.0 From: kristaps@mdocml.bsd.lv To: source@mdocml.bsd.lv Subject: mdocml: Remove some FIXMEs: `Ms' accepts arbitrary text, so it X-Mailer: activitymail 1.26, http://search.cpan.org/dist/activitymail/ Content-Type: text/plain; charset=utf-8 Log Message: ----------- Remove some FIXMEs: `Ms' accepts arbitrary text, so it can't/shouldn't be converted into a symbol. The `Pp' issue has also been fixed. Modified Files: -------------- mdocml: mdoc_html.c mdoc_term.c mdoc_validate.c Revision Data ------------- Index: mdoc_validate.c =================================================================== RCS file: /usr/vhosts/mdocml.bsd.lv/cvs/mdocml/mdoc_validate.c,v retrieving revision 1.110 retrieving revision 1.111 diff -Lmdoc_validate.c -Lmdoc_validate.c -u -p -r1.110 -r1.111 --- mdoc_validate.c +++ mdoc_validate.c @@ -32,7 +32,6 @@ #include "libmandoc.h" /* FIXME: .Bl -diag can't have non-text children in HEAD. */ -/* TODO: ignoring Pp (it's superfluous in some invocations). */ #define PRE_ARGS struct mdoc *mdoc, struct mdoc_node *n #define POST_ARGS struct mdoc *mdoc Index: mdoc_html.c =================================================================== RCS file: /usr/vhosts/mdocml.bsd.lv/cvs/mdocml/mdoc_html.c,v retrieving revision 1.97 retrieving revision 1.98 diff -Lmdoc_html.c -Lmdoc_html.c -u -p -r1.97 -r1.98 --- mdoc_html.c +++ mdoc_html.c @@ -209,7 +209,7 @@ static const struct htmlmdoc mdocs[MDOC_ {mdoc_em_pre, NULL}, /* Em */ {NULL, NULL}, /* Eo */ {mdoc_xx_pre, NULL}, /* Fx */ - {mdoc_ms_pre, NULL}, /* Ms */ /* FIXME: convert to symbol? */ + {mdoc_ms_pre, NULL}, /* Ms */ {NULL, NULL}, /* No */ {mdoc_ns_pre, NULL}, /* Ns */ {mdoc_xx_pre, NULL}, /* Nx */ Index: mdoc_term.c =================================================================== RCS file: /usr/vhosts/mdocml.bsd.lv/cvs/mdocml/mdoc_term.c,v retrieving revision 1.175 retrieving revision 1.176 diff -Lmdoc_term.c -Lmdoc_term.c -u -p -r1.175 -r1.176 --- mdoc_term.c +++ mdoc_term.c @@ -208,7 +208,7 @@ static const struct termact termacts[MDO { termp_under_pre, NULL }, /* Em */ { NULL, NULL }, /* Eo */ { termp_xx_pre, NULL }, /* Fx */ - { termp_bold_pre, NULL }, /* Ms */ /* FIXME: convert to symbol? */ + { termp_bold_pre, NULL }, /* Ms */ { NULL, NULL }, /* No */ { termp_ns_pre, NULL }, /* Ns */ { termp_xx_pre, NULL }, /* Nx */ -- To unsubscribe send an email to source+unsubscribe@mdocml.bsd.lv