=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/mandoc/read.c,v retrieving revision 1.188 retrieving revision 1.189 diff -c -r1.188 -r1.189 *** src/usr.bin/mandoc/read.c 2020/04/07 22:45:37 1.188 --- src/usr.bin/mandoc/read.c 2020/04/18 20:28:46 1.189 *************** *** 1,6 **** ! /* $OpenBSD: read.c,v 1.188 2020/04/07 22:45:37 schwarze Exp $ */ /* ! * Copyright (c) 2010-2019 Ingo Schwarze * Copyright (c) 2008, 2009, 2010, 2011 Kristaps Dzonsons * Copyright (c) 2010, 2012 Joerg Sonnenberger * --- 1,6 ---- ! /* $OpenBSD: read.c,v 1.189 2020/04/18 20:28:46 schwarze Exp $ */ /* ! * Copyright (c) 2010-2020 Ingo Schwarze * Copyright (c) 2008, 2009, 2010, 2011 Kristaps Dzonsons * Copyright (c) 2010, 2012 Joerg Sonnenberger * *************** *** 40,51 **** #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" #define REPARSE_LIMIT 1000 --- 40,51 ---- #include "mandoc_aux.h" #include "mandoc.h" #include "roff.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 *************** *** 706,712 **** mdoc_validate(curp->man); else man_validate(curp->man); ! tag_postprocess(curp->man->meta.first); } return &curp->man->meta; } --- 706,712 ---- mdoc_validate(curp->man); else man_validate(curp->man); ! tag_postprocess(curp->man, curp->man->meta.first); } return &curp->man->meta; }