diff options
author | Yuri Pankov <yuri.pankov@nexenta.com> | 2016-07-29 15:19:48 +0300 |
---|---|---|
committer | Richard Lowe <richlowe@richlowe.net> | 2016-08-17 17:00:11 -0400 |
commit | 371584c2eae4cf827fd406ba26c14f021adaaa70 (patch) | |
tree | 42632bedb51ee7aa4c71b3480230cf2bc0789281 /usr/src/cmd/mandoc/html.h | |
parent | 7a8b8fd18ff115f0caa89183db5373afb568b630 (diff) | |
download | illumos-gate-371584c2eae4cf827fd406ba26c14f021adaaa70.tar.gz |
7243 update mdocml to 1.13.4
Reviewed by: Robert Mustacchi <rm@joyent.com>
Approved by: Richard Lowe <richlowe@richlowe.net>
Diffstat (limited to 'usr/src/cmd/mandoc/html.h')
-rw-r--r-- | usr/src/cmd/mandoc/html.h | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/usr/src/cmd/mandoc/html.h b/usr/src/cmd/mandoc/html.h index bbf6183cc5..27dc140185 100644 --- a/usr/src/cmd/mandoc/html.h +++ b/usr/src/cmd/mandoc/html.h @@ -1,4 +1,4 @@ -/* $Id: html.h,v 1.70 2014/12/02 10:08:06 schwarze Exp $ */ +/* $Id: html.h,v 1.72 2015/11/07 14:01:16 schwarze Exp $ */ /* * Copyright (c) 2008-2011, 2014 Kristaps Dzonsons <kristaps@bsd.lv> * @@ -130,7 +130,6 @@ struct html { struct tagq tags; /* stack of open tags */ struct rofftbl tbl; /* current table */ struct tag *tblt; /* current open table scope */ - const struct mchars *symtab; /* character table */ char *base_man; /* base for manpage href */ char *base_includes; /* base for include href */ char *style; /* style-sheet URI */ @@ -143,7 +142,6 @@ struct html { #define HTML_FRAGMENT (1 << 0) /* don't emit HTML/HEAD/BODY */ }; -__BEGIN_DECLS struct tbl_span; struct eqn; @@ -176,5 +174,3 @@ void buffmt_man(struct html *, void buffmt_includes(struct html *, const char *); int html_strlen(const char *); - -__END_DECLS |