]> git.cameronkatri.com Git - mandoc.git/blobdiff - private.h
*** empty log message ***
[mandoc.git] / private.h
index 3b5b4655a03dea6e8612235b03d631c037bf1317..42c1b85c93edb2c09e7731abdb08205c83aa4913 100644 (file)
--- a/private.h
+++ b/private.h
@@ -1,4 +1,4 @@
-/* $Id: private.h,v 1.61 2009/01/09 14:45:44 kristaps Exp $ */
+/* $Id: private.h,v 1.63 2009/01/14 11:58:24 kristaps Exp $ */
 /*
  * Copyright (c) 2008 Kristaps Dzonsons <kristaps@kth.se>
  *
@@ -52,7 +52,7 @@ struct        mdoc_macro {
 #define        MDOC_EXPLICIT   (1 << 2)
 #define        MDOC_QUOTABLE   (1 << 3)
 #define        MDOC_PROLOGUE   (1 << 4)
-#define        MDOC_NESTED     (1 << 5)
+#define        MDOC_TABSEP     (1 << 5)
 };
 
 extern const struct mdoc_macro *const mdoc_macros;
@@ -118,6 +118,7 @@ int           mdoc_args(struct mdoc *, int,
 
 #define        ARGS_QUOTED     (1 << 0)
 #define        ARGS_DELIM      (1 << 1)
+#define        ARGS_TABSEP     (1 << 2)
 
 int              xstrlcat(char *, const char *, size_t);
 int              xstrlcpy(char *, const char *, size_t);
@@ -131,7 +132,7 @@ int           macro_constant_scoped(MACRO_PROT_ARGS);
 int              macro_constant_delimited(MACRO_PROT_ARGS);
 int              macro_text(MACRO_PROT_ARGS);
 int              macro_scoped(MACRO_PROT_ARGS);
-int              macro_close_explicit(MACRO_PROT_ARGS);
+int              macro_scoped_close(MACRO_PROT_ARGS);
 int              macro_scoped_line(MACRO_PROT_ARGS);
 int              macro_prologue(MACRO_PROT_ARGS);
 int              macro_end(struct mdoc *);