=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/mandoc/roff.h,v retrieving revision 1.25 retrieving revision 1.26 diff -c -r1.25 -r1.26 *** src/usr.bin/mandoc/roff.h 2017/05/04 17:48:24 1.25 --- src/usr.bin/mandoc/roff.h 2017/05/05 02:06:17 1.26 *************** *** 1,4 **** ! /* $OpenBSD: roff.h,v 1.25 2017/05/04 17:48:24 schwarze Exp $ */ /* * Copyright (c) 2008, 2009, 2010, 2011 Kristaps Dzonsons * Copyright (c) 2013, 2014, 2015, 2017 Ingo Schwarze --- 1,4 ---- ! /* $OpenBSD: roff.h,v 1.26 2017/05/05 02:06:17 schwarze Exp $ */ /* * Copyright (c) 2008, 2009, 2010, 2011 Kristaps Dzonsons * Copyright (c) 2013, 2014, 2015, 2017 Ingo Schwarze *************** *** 67,72 **** --- 67,73 ---- enum roff_tok { ROFF_br = 0, + ROFF_ft, ROFF_MAX, ROFF_ab, ROFF_ad, *************** *** 156,162 **** ROFF_fschar, ROFF_fspacewidth, ROFF_fspecial, - /* MAN_ft; ignored in mdoc(7) */ ROFF_ftr, ROFF_fzoom, ROFF_gcolor, --- 157,162 ---- *************** *** 464,470 **** MAN_PD, MAN_AT, MAN_in, - MAN_ft, MAN_OP, MAN_EX, MAN_EE, --- 464,469 ---- *************** *** 576,578 **** --- 575,578 ---- struct ohash *roffhash_alloc(enum roff_tok, enum roff_tok); enum roff_tok roffhash_find(struct ohash *, const char *, size_t); void roffhash_free(struct ohash *); + void roff_validate(struct roff_man *);