summaryrefslogtreecommitdiffstatshomepage
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
commit81ee6448dee9591b4e0ee8879542ef378054c91b (patch)
treeb4b9956f4b342b658131ef497533b46af5e97924 /mdoc_action.c
parent5b5b20933119ec53adc824df33ad8d7f3b0c22e6 (diff)
downloadmandoc-81ee6448dee9591b4e0ee8879542ef378054c91b.tar.gz
mandoc-81ee6448dee9591b4e0ee8879542ef378054c91b.tar.zst
mandoc-81ee6448dee9591b4e0ee8879542ef378054c91b.zip
Added `St -ieee1275-94'.
Documented a future `Bd' fixme.
Diffstat (limited to 'mdoc_action.c')
-rw-r--r--mdoc_action.c9
1 files changed, 7 insertions, 2 deletions
diff --git a/mdoc_action.c b/mdoc_action.c
index 156bb1e3..a45faf9c 100644
--- a/mdoc_action.c
+++ b/mdoc_action.c
@@ -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 <kristaps@kth.se>
*
@@ -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)