]> git.cameronkatri.com Git - mandoc.git/blobdiff - term.h
Increase performance by stashing the list type in struct mdoc_node.
[mandoc.git] / term.h
diff --git a/term.h b/term.h
index 7c10ff4f1b758ba51c1817530935425237f43f95..cac23d9b77d884bcacd0e7e23f1ef43c7ea2610d 100644 (file)
--- a/term.h
+++ b/term.h
@@ -1,4 +1,4 @@
-/*     $Id: term.h,v 1.53 2010/05/10 08:05:17 kristaps Exp $ */
+/*     $Id: term.h,v 1.55 2010/05/15 16:18:23 joerg Exp $ */
 /*
  * Copyright (c) 2008, 2009 Kristaps Dzonsons <kristaps@kth.se>
  *
@@ -32,6 +32,7 @@ enum  termfont {
 #define        TERM_MAXMARGIN    100000 /* FIXME */
 
 struct termp {
+       size_t            defrmargin;   /* Right margin of the device.. */
        size_t            rmargin;      /* Current right margin. */
        size_t            maxrmargin;   /* Max right margin. */
        size_t            maxcols;      /* Max size of buf. */
@@ -39,6 +40,7 @@ struct        termp {
        size_t            col;          /* Bytes in buf. */
        int               overstep;     /* See termp_flushln(). */
        int               flags;
+#define        TERMP_SENTENCE   (1 << 1)       /* Space before a sentence. */
 #define        TERMP_NOSPACE    (1 << 2)       /* No space before words. */
 #define        TERMP_NOLPAD     (1 << 3)       /* See term_flushln(). */
 #define        TERMP_NOBREAK    (1 << 4)       /* See term_flushln(). */