summaryrefslogtreecommitdiffstats
path: root/mdoc_action.c
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2009-07-24 13:18:15 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2009-07-24 13:18:15 +0000
commitfdf3d4ea21fc756ec3a0b1f10ab6b1ea3ba6d00e (patch)
treef9ee1e26c9f6f3ed79eb8f8bcbdb968c30fca3a8 /mdoc_action.c
parent156ef7410fe2c87dc6a182e4a9ad6ed3342c9183 (diff)
downloadmandoc-fdf3d4ea21fc756ec3a0b1f10ab6b1ea3ba6d00e.tar.gz
Added `St -ieee1275-94'.
Documented a future `Bd' fixme.
Diffstat (limited to 'mdoc_action.c')
-rw-r--r--mdoc_action.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/mdoc_action.c b/mdoc_action.c
index ea928a58..a54b21c3 100644
--- a/mdoc_action.c
+++ b/mdoc_action.c
@@ -845,7 +845,12 @@ pre_bd(PRE_ARGS)
if (MDOC_BODY != n->type)
return(1);
- /* Enter literal context if `Bd -literal' or * -unfilled'. */
+ /* Enter literal context if `Bd -literal' or `-unfilled'. */
+
+ /*
+ * TODO: `-offset' without an argument should be the width of
+ * the literal "<string>".
+ */
for (n = n->parent, i = 0; i < (int)n->args->argc; i++)
if (MDOC_Literal == n->args->argv[i].arg)