summaryrefslogtreecommitdiffstats
path: root/xml.c
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2008-12-05 17:43:14 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2008-12-05 17:43:14 +0000
commit57ed1544ce7edde6d0812e0c870f03e6b1e7204f (patch)
treef0901e95a0cbbd7383ebde2739459cdba0e7c8da /xml.c
parenta4880c4fea2cc33d9168cb96bc44c1b3670ef402 (diff)
downloadmandoc-57ed1544ce7edde6d0812e0c870f03e6b1e7204f.tar.gz
*** empty log message ***
Diffstat (limited to 'xml.c')
-rw-r--r--xml.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/xml.c b/xml.c
index 124c80ae..80d8c428 100644
--- a/xml.c
+++ b/xml.c
@@ -24,10 +24,10 @@
#include "ml.h"
-static ssize_t xml_endtag(struct md_mbuf *,
+static ssize_t xml_endtag(struct md_mbuf *, void *,
const struct md_args *,
enum md_ns, int);
-static ssize_t xml_begintag(struct md_mbuf *,
+static ssize_t xml_begintag(struct md_mbuf *, void *,
const struct md_args *,
enum md_ns, int,
const int *, const char **);
@@ -77,9 +77,9 @@ xml_end(struct md_mbuf *mbuf, const struct md_args *args)
/* ARGSUSED */
static ssize_t
-xml_begintag(struct md_mbuf *mbuf, const struct md_args *args,
- enum md_ns ns, int tok,
- const int *argc, const char **argv)
+xml_begintag(struct md_mbuf *mbuf, void *data,
+ const struct md_args *args, enum md_ns ns,
+ int tok, const int *argc, const char **argv)
{
size_t res;
@@ -117,8 +117,8 @@ xml_begintag(struct md_mbuf *mbuf, const struct md_args *args,
/* ARGSUSED */
static ssize_t
-xml_endtag(struct md_mbuf *mbuf, const struct md_args *args,
- enum md_ns ns, int tok)
+xml_endtag(struct md_mbuf *mbuf, void *data,
+ const struct md_args *args, enum md_ns ns, int tok)
{
size_t res;
@@ -173,7 +173,7 @@ md_init_xml(const struct md_args *args,
struct md_mbuf *mbuf, const struct md_rbuf *rbuf)
{
- return(mlg_alloc(args, rbuf, mbuf, xml_begintag,
+ return(mlg_alloc(args, NULL, rbuf, mbuf, xml_begintag,
xml_endtag, xml_begin, xml_end));
}