From b2b5082e5673e0127d8316e54a5d2ad084a62864 Mon Sep 17 00:00:00 2001 From: Kristaps Dzonsons Date: Sat, 12 Jun 2010 12:10:55 +0000 Subject: Moved `Bl -compact' into cached data. This allowed the removal of scanning the argv list in print_bvspace(), and thus the parent pointer. --- mdoc.h | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'mdoc.h') diff --git a/mdoc.h b/mdoc.h index 1145efc2..7dccce46 100644 --- a/mdoc.h +++ b/mdoc.h @@ -273,13 +273,14 @@ enum mdoc_disp { }; struct mdoc_bd { - const char *offs; - enum mdoc_disp type; - int comp; + const char *offs; /* -offset */ + enum mdoc_disp type; /* -ragged, etc. */ + int comp; /* -compact */ }; struct mdoc_bl { - enum mdoc_list type; + enum mdoc_list type; /* -tag, -enum, etc. */ + int comp; /* -compact */ }; /* Node in AST. */ -- cgit