=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/mandoc/man.c,v retrieving revision 1.93 retrieving revision 1.94 diff -u -r1.93 -r1.94 --- src/usr.bin/mandoc/man.c 2014/11/28 06:26:46 1.93 +++ src/usr.bin/mandoc/man.c 2014/12/28 14:39:08 1.94 @@ -1,4 +1,4 @@ -/* $OpenBSD: man.c,v 1.93 2014/11/28 06:26:46 schwarze Exp $ */ +/* $OpenBSD: man.c,v 1.94 2014/12/28 14:39:08 schwarze Exp $ */ /* * Copyright (c) 2008, 2009, 2010, 2011 Kristaps Dzonsons * Copyright (c) 2013, 2014 Ingo Schwarze @@ -90,7 +90,8 @@ } struct man * -man_alloc(struct roff *roff, struct mparse *parse, int quick) +man_alloc(struct roff *roff, struct mparse *parse, + const char *defos, int quick) { struct man *p; @@ -98,6 +99,7 @@ man_hash_init(); p->parse = parse; + p->defos = defos; p->quick = quick; p->roff = roff;