=================================================================== RCS file: /cvs/mandoc/read.c,v retrieving revision 1.217 retrieving revision 1.218 diff -u -p -r1.217 -r1.218 --- mandoc/read.c 2020/04/07 22:56:02 1.217 +++ mandoc/read.c 2020/04/18 20:40:10 1.218 @@ -1,6 +1,6 @@ -/* $Id: read.c,v 1.217 2020/04/07 22:56:02 schwarze Exp $ */ +/* $Id: read.c,v 1.218 2020/04/18 20:40:10 schwarze Exp $ */ /* - * Copyright (c) 2010-2019 Ingo Schwarze + * Copyright (c) 2010-2020 Ingo Schwarze * Copyright (c) 2008, 2009, 2010, 2011 Kristaps Dzonsons * Copyright (c) 2010, 2012 Joerg Sonnenberger * @@ -42,12 +42,12 @@ #include "mandoc_aux.h" #include "mandoc.h" #include "roff.h" -#include "tag.h" #include "mdoc.h" #include "man.h" #include "mandoc_parse.h" #include "libmandoc.h" #include "roff_int.h" +#include "tag.h" #define REPARSE_LIMIT 1000 @@ -708,7 +708,7 @@ mparse_result(struct mparse *curp) mdoc_validate(curp->man); else man_validate(curp->man); - tag_postprocess(curp->man->meta.first); + tag_postprocess(curp->man, curp->man->meta.first); } return &curp->man->meta; }