]> git.cameronkatri.com Git - mandoc.git/blobdiff - term.h
Fixed TERMP_NOBREAK and line overruns.
[mandoc.git] / term.h
diff --git a/term.h b/term.h
index fcf45e404b6e411fa2ad74c2e3b38da291fcae81..95e75d2af55fd7f32d8c5c8f5265529efe4ec864 100644 (file)
--- a/term.h
+++ b/term.h
@@ -1,4 +1,4 @@
-/* $Id: term.h,v 1.10 2009/02/25 17:02:47 kristaps Exp $ */
+/* $Id: term.h,v 1.12 2009/03/01 13:06:49 kristaps Exp $ */
 /*
  * Copyright (c) 2008 Kristaps Dzonsons <kristaps@kth.se>
  *
@@ -51,9 +51,10 @@ struct       termpair {
        int               count;
 };
 
-#define        TERMPAIR_SETFLAG(p, fl) \
+#define        TERMPAIR_SETFLAG(termp, p, fl) \
        do { \
                assert(! (TERMPAIR_FLAG & (p)->type)); \
+               (termp)->flags |= (fl); \
                (p)->flag = (fl); \
                (p)->type |= TERMPAIR_FLAG; \
        } while (0)