diff options
author | 2015-04-02 23:47:43 +0000 | |
---|---|---|
committer | 2015-04-02 23:47:43 +0000 | |
commit | 2a238f450e165ba916583c3adead886533388bc3 (patch) | |
tree | 7933252f8f90ce208d7db0049ff6517eca16a750 /usr.bin/mandoc/mdoc_html.c | |
parent | murder excessive whitespace (diff) | |
download | wireguard-openbsd-2a238f450e165ba916583c3adead886533388bc3.tar.xz wireguard-openbsd-2a238f450e165ba916583c3adead886533388bc3.zip |
Third step towards parser unification:
Replace struct mdoc_meta and struct man_meta by a unified struct roff_meta.
Written of the train from London to Exeter on the way to p2k15.
Diffstat (limited to 'usr.bin/mandoc/mdoc_html.c')
-rw-r--r-- | usr.bin/mandoc/mdoc_html.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/mandoc/mdoc_html.c b/usr.bin/mandoc/mdoc_html.c index bd2d4ba06ed..3bb09c979ac 100644 --- a/usr.bin/mandoc/mdoc_html.c +++ b/usr.bin/mandoc/mdoc_html.c @@ -1,4 +1,4 @@ -/* $OpenBSD: mdoc_html.c,v 1.103 2015/04/02 22:06:17 schwarze Exp $ */ +/* $OpenBSD: mdoc_html.c,v 1.104 2015/04/02 23:47:43 schwarze Exp $ */ /* * Copyright (c) 2008-2011, 2014 Kristaps Dzonsons <kristaps@bsd.lv> * Copyright (c) 2014, 2015 Ingo Schwarze <schwarze@openbsd.org> @@ -33,7 +33,7 @@ #define INDENT 5 -#define MDOC_ARGS const struct mdoc_meta *meta, \ +#define MDOC_ARGS const struct roff_meta *meta, \ struct roff_node *n, \ struct html *h |