summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2009-11-10 16:20:22 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2009-11-10 16:20:22 +0000
commit03b81d91e640fd174c9a14d6771a042857cd5970 (patch)
treebf8584f57c0e495f6086d1e838619e7e300d9fcf
parent02b3298e7df190d17c1e5726e60fa2735a609206 (diff)
downloadmandoc-03b81d91e640fd174c9a14d6771a042857cd5970.tar.gz
mandoc-03b81d91e640fd174c9a14d6771a042857cd5970.tar.zst
mandoc-03b81d91e640fd174c9a14d6771a042857cd5970.zip
(Forgot to update html.h with metafonts. Build will puke on check-out.)
-rw-r--r--html.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/html.h b/html.h
index fd3939d0..19550da1 100644
--- a/html.h
+++ b/html.h
@@ -1,4 +1,4 @@
-/* $Id: html.h,v 1.17 2009/10/28 08:00:18 kristaps Exp $ */
+/* $Id: html.h,v 1.18 2009/11/10 16:20:22 kristaps Exp $ */
/*
* Copyright (c) 2008, 2009 Kristaps Dzonsons <kristaps@kth.se>
*
@@ -112,6 +112,10 @@ struct html {
char *style;
char buf[BUFSIZ];
size_t buflen;
+ int metafont;
+#define METAF_BOLD (1 << 0)
+#define METAF_UNDER (1 << 1)
+ int metamask;
};
struct roffsu;