]> git.cameronkatri.com Git - mandoc.git/blobdiff - mdoc.h
Churn-ish check-in getting mdoc_parseln() and man_parseln() to accept a
[mandoc.git] / mdoc.h
diff --git a/mdoc.h b/mdoc.h
index 92d775b7f231ce494f891e9dfb0e5b8f76e694f2..dc4be5875d560aefc28fd74fca8f2e8e4b21fdd6 100644 (file)
--- a/mdoc.h
+++ b/mdoc.h
@@ -1,6 +1,6 @@
-/*     $Id: mdoc.h,v 1.83 2010/05/31 10:28:04 kristaps Exp $ */
+/*     $Id: mdoc.h,v 1.92 2010/06/26 15:36:37 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
@@ -155,6 +155,7 @@ enum        mdoct {
 
 /* What follows is a list of ALL possible macro arguments. */
 
+/* FIXME: make this into an enum. */
 #define        MDOC_Split       0
 #define        MDOC_Nosplit     1
 #define        MDOC_Ragged      2
@@ -263,6 +264,28 @@ enum       mdoc_list {
        LIST_tag
 };
 
+enum   mdoc_disp {
+       DISP__NONE = 0,
+       DISP_centred,
+       DISP_ragged,
+       DISP_unfilled,
+       DISP_filled,
+       DISP_literal
+};
+
+struct mdoc_bd {
+       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. */
 struct mdoc_node {
        struct mdoc_node *parent; /* parent AST node */
@@ -290,7 +313,8 @@ struct      mdoc_node {
        char             *string;       /* TEXT */
 
        union {
-               enum mdoc_list list; /* for `Bl' nodes */
+               struct mdoc_bl Bl;
+               struct mdoc_bd Bd;
        } data;
 };
 
@@ -312,7 +336,9 @@ struct      mdoc;
 void             mdoc_free(struct mdoc *);
 struct mdoc     *mdoc_alloc(void *, int, mandocmsg);
 void             mdoc_reset(struct mdoc *);
-int              mdoc_parseln(struct mdoc *, int, char *, int);
+int              mdoc_parseln(struct mdoc *, 
+                       const struct regset *,
+                       int, char *, int);
 const struct mdoc_node *mdoc_node(const struct mdoc *);
 const struct mdoc_meta *mdoc_meta(const struct mdoc *);
 int              mdoc_endparse(struct mdoc *);