diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2009-10-03 15:08:09 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2009-10-03 15:08:09 +0000 |
commit | 54bada649de2dc93dd974dabdb3c9a3c732571f5 (patch) | |
tree | c6232a3224f4c599fc64f935d85a38c77758952c /html.h | |
parent | 30fcd4b7eb064dd0029d7fc6e60afc9b973015cb (diff) | |
download | mandoc-54bada649de2dc93dd974dabdb3c9a3c732571f5.tar.gz |
Element tag buffer is now part of struct html.
buffmt() can be called in sequence.
Noted BUFSIZ-sized buffer in CAVEATS (attribute length for link formats).
Added -oman=FMT -Thtml option for `Xr' manual links.
Removed -obase=URI -Thtml option (obsolete).
Diffstat (limited to 'html.h')
-rw-r--r-- | html.h | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -87,7 +87,10 @@ struct html { struct ordq ords; void *symtab; char *base; + char *base_man; char *style; + char buf[BUFSIZ]; + size_t buflen; }; void print_gen_doctype(struct html *); |