]> git.cameronkatri.com Git - mandoc.git/blobdiff - libmdoc.h
Fix a regression in term.c rev. 1.229 reported by bentley@:
[mandoc.git] / libmdoc.h
index 8b9b8dec6472b7c56350c0b3ad7d70468e2d5508..1507a8c26fbb9104f6699e3bb57512852df9ece2 100644 (file)
--- a/libmdoc.h
+++ b/libmdoc.h
@@ -1,4 +1,4 @@
-/*     $Id: libmdoc.h,v 1.86 2014/07/09 11:31:43 schwarze Exp $ */
+/*     $Id: libmdoc.h,v 1.88 2014/08/01 17:40:34 schwarze Exp $ */
 /*
  * Copyright (c) 2008, 2009, 2010, 2011 Kristaps Dzonsons <kristaps@bsd.lv>
  * Copyright (c) 2013 Ingo Schwarze <schwarze@openbsd.org>
@@ -28,7 +28,6 @@ struct        mdoc {
        const char       *defos; /* default argument for .Os */
        int               quick; /* abort parse early */
        int               flags; /* parse flags */
-#define        MDOC_HALT        (1 << 0) /* error in parse: halt */
 #define        MDOC_LITERAL     (1 << 1) /* in a literal scope */
 #define        MDOC_PBODY       (1 << 2) /* in the document body */
 #define        MDOC_NEWLINE     (1 << 3) /* first macro/text in a line */
@@ -105,10 +104,6 @@ extern     const struct mdoc_macro *const mdoc_macros;
 
 __BEGIN_DECLS
 
-#define                  mdoc_pmsg(mdoc, l, p, t) \
-                 mandoc_msg((t), (mdoc)->parse, (l), (p), NULL)
-#define                  mdoc_nmsg(mdoc, n, t) \
-                 mandoc_msg((t), (mdoc)->parse, (n)->line, (n)->pos, NULL)
 int              mdoc_macro(MACRO_PROT_ARGS);
 int              mdoc_word_alloc(struct mdoc *,
                        int, int, const char *);