diff options
Diffstat (limited to 'mdoc_action.c')
-rw-r--r-- | mdoc_action.c | 7 |
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) |