summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2009-06-22 12:22:35 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2009-06-22 12:22:35 +0000
commit18f369698f06fa3b0fb07a981d798daafdfc239f (patch)
tree9c9b4840a453f1b1114ccaec074e73681ba7da0f
parent5ff3d11b2e760657dd7adae6fb66cdc78ebd34ad (diff)
downloadmandoc-18f369698f06fa3b0fb07a981d798daafdfc239f.tar.gz
Added -split and -nosplit "I-Don't-Like" note to mdoc.7 (there really must be another way to do this).
Fixed .Er -width conversion.
-rw-r--r--mdoc.75
-rw-r--r--mdoc_strings.c3
2 files changed, 7 insertions, 1 deletions
diff --git a/mdoc.7 b/mdoc.7
index 350bd2cb..52585e69 100644
--- a/mdoc.7
+++ b/mdoc.7
@@ -618,4 +618,9 @@ etc.).
There's no way to refer to references in
.Sq \&.Rs/.Re
blocks.
+.\" LIST-ITEM
+.It
+The \-split and \-nosplit arguments to
+.Sq \&.An
+are inane.
.El
diff --git a/mdoc_strings.c b/mdoc_strings.c
index 25711de7..9b5fbf78 100644
--- a/mdoc_strings.c
+++ b/mdoc_strings.c
@@ -221,6 +221,7 @@ mdoc_atotime(const char *p)
}
+/* FIXME: move this into an editable .in file. */
size_t
mdoc_macro2len(int macro)
{
@@ -255,7 +256,7 @@ mdoc_macro2len(int macro)
case(MDOC_Em):
return(10);
case(MDOC_Er):
- return(12);
+ return(17);
case(MDOC_Ev):
return(15);
case(MDOC_Fa):