diff options
-rw-r--r-- | mdoc_action.c | 7 | ||||
-rw-r--r-- | st.in | 1 |
2 files changed, 7 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) @@ -51,6 +51,7 @@ LINE("-ansiC-89", "ANSI X3.159-1989 (\\(lqANSI C\\(rq)") LINE("-ansiC-99", "ANSI/ISO/IEC 9899-1999 (\\(lqANSI C99\\(rq)") LINE("-ieee754", "IEEE Std 754-1985") LINE("-iso8802-3", "ISO 8802-3: 1989") +LINE("-ieee1275-94", "IEEE Std 1275-1994 (\\(lqOpen Firmware\\(rq)") LINE("-xpg3", "X/Open Portability Guide Issue 3 (\\(lqXPG3\\(rq)") LINE("-xpg4", "X/Open Portability Guide Issue 4 (\\(lqXPG4\\(rq)") LINE("-xpg4.2", "X/Open Portability Guide Issue 4.2 (\\(lqXPG4.2\\(rq)") |