=================================================================== RCS file: /cvs/mandoc/Attic/mdoc_action.c,v retrieving revision 1.31 retrieving revision 1.32 diff -u -p -r1.31 -r1.32 --- mandoc/Attic/mdoc_action.c 2009/07/21 15:53:31 1.31 +++ mandoc/Attic/mdoc_action.c 2009/07/24 13:18:15 1.32 @@ -1,4 +1,4 @@ -/* $Id: mdoc_action.c,v 1.31 2009/07/21 15:53:31 kristaps Exp $ */ +/* $Id: mdoc_action.c,v 1.32 2009/07/24 13:18:15 kristaps Exp $ */ /* * Copyright (c) 2008, 2009 Kristaps Dzonsons * @@ -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 "". + */ for (n = n->parent, i = 0; i < (int)n->args->argc; i++) if (MDOC_Literal == n->args->argv[i].arg)