summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2010-07-19 11:11:54 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2010-07-19 11:11:54 +0000
commitc395ee98355292c476542f82c6b8077d95e9496c (patch)
treeee390a8d9d935142786d5e74c61b897c79e51eb5
parentf90057424895469777005ec5e8c4af9179e7ad87 (diff)
downloadmandoc-c395ee98355292c476542f82c6b8077d95e9496c.tar.gz
mandoc-c395ee98355292c476542f82c6b8077d95e9496c.tar.zst
mandoc-c395ee98355292c476542f82c6b8077d95e9496c.zip
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.
-rw-r--r--mdoc_html.c4
-rw-r--r--mdoc_term.c4
-rw-r--r--mdoc_validate.c3
3 files changed, 5 insertions, 6 deletions
diff --git a/mdoc_html.c b/mdoc_html.c
index c7dbfea0..c41124d7 100644
--- a/mdoc_html.c
+++ b/mdoc_html.c
@@ -1,4 +1,4 @@
-/* $Id: mdoc_html.c,v 1.97 2010/07/19 11:06:31 kristaps Exp $ */
+/* $Id: mdoc_html.c,v 1.98 2010/07/19 11:11:54 kristaps Exp $ */
/*
* Copyright (c) 2008, 2009, 2010 Kristaps Dzonsons <kristaps@bsd.lv>
*
@@ -209,7 +209,7 @@ static const struct htmlmdoc mdocs[MDOC_MAX] = {
{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 */
diff --git a/mdoc_term.c b/mdoc_term.c
index d5bd775d..9339ed68 100644
--- a/mdoc_term.c
+++ b/mdoc_term.c
@@ -1,4 +1,4 @@
-/* $Id: mdoc_term.c,v 1.175 2010/07/19 11:06:31 kristaps Exp $ */
+/* $Id: mdoc_term.c,v 1.176 2010/07/19 11:11:54 kristaps Exp $ */
/*
* Copyright (c) 2008, 2009, 2010 Kristaps Dzonsons <kristaps@bsd.lv>
* Copyright (c) 2010 Ingo Schwarze <schwarze@openbsd.org>
@@ -208,7 +208,7 @@ static const struct termact termacts[MDOC_MAX] = {
{ 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 */
diff --git a/mdoc_validate.c b/mdoc_validate.c
index 256f0fe8..66d90cfa 100644
--- a/mdoc_validate.c
+++ b/mdoc_validate.c
@@ -1,4 +1,4 @@
-/* $Id: mdoc_validate.c,v 1.110 2010/07/13 23:53:20 schwarze Exp $ */
+/* $Id: mdoc_validate.c,v 1.111 2010/07/19 11:11:54 kristaps Exp $ */
/*
* Copyright (c) 2008, 2009, 2010 Kristaps Dzonsons <kristaps@bsd.lv>
*
@@ -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