summaryrefslogtreecommitdiffstatshomepage
path: root/xml.c
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2008-12-10 12:05:33 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2008-12-10 12:05:33 +0000
commit314ca44f160b0c1b8bf73bc7c4157ca07db5da8a (patch)
treebb5cf4327cf95993a869cbffb6cb0f9c67173941 /xml.c
parent7d393d45bdff6d0d4a4742e71d0c6997150410be (diff)
downloadmandoc-314ca44f160b0c1b8bf73bc7c4157ca07db5da8a.tar.gz
mandoc-314ca44f160b0c1b8bf73bc7c4157ca07db5da8a.tar.zst
mandoc-314ca44f160b0c1b8bf73bc7c4157ca07db5da8a.zip
Versioning up.
Diffstat (limited to 'xml.c')
-rw-r--r--xml.c13
1 files changed, 9 insertions, 4 deletions
diff --git a/xml.c b/xml.c
index 8d73301b..3489cc63 100644
--- a/xml.c
+++ b/xml.c
@@ -1,4 +1,4 @@
-/* $Id: xml.c,v 1.23 2008/12/10 10:43:57 kristaps Exp $ */
+/* $Id: xml.c,v 1.24 2008/12/10 12:05:33 kristaps Exp $ */
/*
* Copyright (c) 2008 Kristaps Dzonsons <kristaps@kth.se>
*
@@ -44,8 +44,11 @@ static int xml_begin(struct md_mbuf *,
const struct tm *,
const char *, const char *,
enum roffmsec, enum roffvol);
-static int xml_end(struct md_mbuf *,
- const struct md_args *);
+static int xml_end(struct md_mbuf *,
+ const struct md_args *,
+ const struct tm *,
+ const char *, const char *,
+ enum roffmsec, enum roffvol);
static ssize_t xml_printtagname(struct md_mbuf *,
enum md_ns, int);
static ssize_t xml_printtagargs(struct md_mbuf *,
@@ -139,7 +142,9 @@ xml_begin(struct md_mbuf *mbuf, const struct md_args *args,
/* ARGSUSED */
static int
-xml_end(struct md_mbuf *mbuf, const struct md_args *args)
+xml_end(struct md_mbuf *mbuf, const struct md_args *args,
+ const struct tm *tm, const char *os,
+ const char *title, enum roffmsec sec, enum roffvol vol)
{
return(ml_puts(mbuf, "</mdoc>", NULL));