summaryrefslogtreecommitdiffstatshomepage
path: root/action.c
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2009-02-28 19:15:28 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2009-02-28 19:15:28 +0000
commit04ec167793e3dfd1707ea22132ce12f5b7b45e85 (patch)
treea8e26ae4e9a4cceb3d2840bd0352c4d82076b3d6 /action.c
parentf300e7e80f1ad8d7416dbc604d1f2322668e6d72 (diff)
downloadmandoc-04ec167793e3dfd1707ea22132ce12f5b7b45e85.tar.gz
mandoc-04ec167793e3dfd1707ea22132ce12f5b7b45e85.tar.zst
mandoc-04ec167793e3dfd1707ea22132ce12f5b7b45e85.zip
Initial Rs/Re support.
Fixed default Ds width.
Diffstat (limited to 'action.c')
-rw-r--r--action.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/action.c b/action.c
index c24830ad..f18bb780 100644
--- a/action.c
+++ b/action.c
@@ -1,4 +1,4 @@
-/* $Id: action.c,v 1.25 2009/02/28 14:43:35 kristaps Exp $ */
+/* $Id: action.c,v 1.26 2009/02/28 19:15:28 kristaps Exp $ */
/*
* Copyright (c) 2008 Kristaps Dzonsons <kristaps@kth.se>
*
@@ -397,7 +397,7 @@ post_bl_width(struct mdoc *mdoc)
"%s argument deprecated",
mdoc_argnames[MDOC_Width]))
return(0);
- width = 6;
+ width = 8;
} else if (MDOC_MAX == (tok = mdoc_find(mdoc, *p)))
return(1);
else if (0 == (width = mdoc_macro2len(tok)))