=================================================================== RCS file: /cvs/mandoc/Attic/mdocml.c,v retrieving revision 1.51 retrieving revision 1.52 diff -u -p -r1.51 -r1.52 --- mandoc/Attic/mdocml.c 2009/02/20 07:43:15 1.51 +++ mandoc/Attic/mdocml.c 2009/02/20 11:04:23 1.52 @@ -1,4 +1,4 @@ - /* $Id: mdocml.c,v 1.51 2009/02/20 07:43:15 kristaps Exp $ */ + /* $Id: mdocml.c,v 1.52 2009/02/20 11:04:23 kristaps Exp $ */ /* * Copyright (c) 2008 Kristaps Dzonsons * @@ -224,6 +224,8 @@ buf_begin(struct md_parse *p) static int parse_leave(struct md_parse *p, int code) { + extern int termprint(const struct mdoc_node *, + const struct mdoc_meta *); if (NULL == p->mdoc) return(code); @@ -231,13 +233,9 @@ parse_leave(struct md_parse *p, int code) if ( ! mdoc_endparse(p->mdoc)) code = 0; -#if 0 /* TODO */ - if (code && ! mdoc_write(p->out, mdoc_node(p->mdoc))) { - warnx("%s: write error", p->out); + if (code && ! termprint(mdoc_node(p->mdoc), mdoc_meta(p->mdoc))) code = 0; - } -#endif mdoc_free(p->mdoc); return(code);