From ff7b52fc598055387eeb90035e1d6418b43d3c27 Mon Sep 17 00:00:00 2001 From: Kristaps Dzonsons Date: Sat, 12 Jun 2010 12:38:01 +0000 Subject: Cached `Bl -offset' into mdoc_bl. Removed erroneous "-offset defaults to 6n if no value is specified" and added regression tests for `Bl' testing against the empty -offset argument. --- mdoc.h | 1 + 1 file changed, 1 insertion(+) (limited to 'mdoc.h') diff --git a/mdoc.h b/mdoc.h index 7dccce46..7728dc72 100644 --- a/mdoc.h +++ b/mdoc.h @@ -279,6 +279,7 @@ struct mdoc_bd { }; struct mdoc_bl { + const char *offs; /* -offset */ enum mdoc_list type; /* -tag, -enum, etc. */ int comp; /* -compact */ }; -- cgit