diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2010-06-12 12:10:55 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2010-06-12 12:10:55 +0000 |
commit | b2b5082e5673e0127d8316e54a5d2ad084a62864 (patch) | |
tree | 065fff7700eb20616226134fedbfec463842ed39 /mdoc.h | |
parent | 9182860daa80b4a3002521ca4fdbd780d009b616 (diff) | |
download | mandoc-b2b5082e5673e0127d8316e54a5d2ad084a62864.tar.gz |
Moved `Bl -compact' into cached data. This allowed the removal of
scanning the argv list in print_bvspace(), and thus the parent pointer.
Diffstat (limited to 'mdoc.h')
-rw-r--r-- | mdoc.h | 9 |
1 files changed, 5 insertions, 4 deletions
@@ -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. */ |