]> git.cameronkatri.com Git - mandoc.git/blobdiff - mdoc.h
Churn as I finish email address migration kth.se -> bsd.lv.
[mandoc.git] / mdoc.h
diff --git a/mdoc.h b/mdoc.h
index bf62321fce950faa167c73c5a76cc8759abeae95..7a84ab16c17d1b3bb04e99aabffb11484299a96c 100644 (file)
--- a/mdoc.h
+++ b/mdoc.h
@@ -1,6 +1,6 @@
-/*     $Id: mdoc.h,v 1.85 2010/06/12 11:21:44 kristaps Exp $ */
+/*     $Id: mdoc.h,v 1.90 2010/06/19 20:46:28 kristaps Exp $ */
 /*
- * Copyright (c) 2008, 2009 Kristaps Dzonsons <kristaps@kth.se>
+ * Copyright (c) 2008, 2009 Kristaps Dzonsons <kristaps@bsd.lv>
  *
  * Permission to use, copy, modify, and distribute this software for any
  * purpose with or without fee is hereby granted, provided that the above
@@ -273,9 +273,16 @@ 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 {
+       const char       *width; /* -width */
+       const char       *offs; /* -offset */
+       enum mdoc_list    type; /* -tag, -enum, etc. */
+       int               comp; /* -compact */
 };
 
 /* Node in AST. */
@@ -305,7 +312,7 @@ struct      mdoc_node {
        char             *string;       /* TEXT */
 
        union {
-               enum mdoc_list list; /* `Bl' nodes */
+               struct mdoc_bl Bl;
                struct mdoc_bd Bd;
        } data;
 };