From 5a0dd4748ed706df837d91eb3c47b30b2e60f77c Mon Sep 17 00:00:00 2001 From: Kristaps Dzonsons Date: Sun, 13 Jun 2010 21:02:48 +0000 Subject: Allow -width for lists to be cached in mdoc_bl. This requires some trickery because widths may be on-the-fly recalculated. I don't like how these are split between mdoc_action.c and mdoc_validate.c, but for the time being, it'll do. --- mdoc.h | 1 + 1 file changed, 1 insertion(+) (limited to 'mdoc.h') diff --git a/mdoc.h b/mdoc.h index 7728dc72..3cb8bcec 100644 --- a/mdoc.h +++ b/mdoc.h @@ -279,6 +279,7 @@ struct mdoc_bd { }; struct mdoc_bl { + const char *width; /* -width */ const char *offs; /* -offset */ enum mdoc_list type; /* -tag, -enum, etc. */ int comp; /* -compact */ -- cgit