summaryrefslogtreecommitdiffstats
path: root/mdoc.h
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2010-06-12 12:10:55 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2010-06-12 12:10:55 +0000
commitb2b5082e5673e0127d8316e54a5d2ad084a62864 (patch)
tree065fff7700eb20616226134fedbfec463842ed39 /mdoc.h
parent9182860daa80b4a3002521ca4fdbd780d009b616 (diff)
downloadmandoc-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.h9
1 files changed, 5 insertions, 4 deletions
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. */