=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/mandoc/libmandoc.h,v retrieving revision 1.54 retrieving revision 1.55 diff -c -r1.54 -r1.55 *** src/usr.bin/mandoc/libmandoc.h 2017/07/08 14:51:01 1.54 --- src/usr.bin/mandoc/libmandoc.h 2017/07/08 17:52:42 1.55 *************** *** 1,7 **** ! /* $OpenBSD: libmandoc.h,v 1.54 2017/07/08 14:51:01 schwarze Exp $ */ /* * Copyright (c) 2009, 2010, 2011, 2012 Kristaps Dzonsons ! * Copyright (c) 2013, 2014, 2015 Ingo Schwarze * * Permission to use, copy, modify, and distribute this software for any * purpose with or without fee is hereby granted, provided that the above --- 1,7 ---- ! /* $OpenBSD: libmandoc.h,v 1.55 2017/07/08 17:52:42 schwarze Exp $ */ /* * Copyright (c) 2009, 2010, 2011, 2012 Kristaps Dzonsons ! * Copyright (c) 2013, 2014, 2015, 2017 Ingo Schwarze * * Permission to use, copy, modify, and distribute this software for any * purpose with or without fee is hereby granted, provided that the above *************** *** 23,29 **** ROFF_REPARSE, /* re-run main parser on the result */ ROFF_SO, /* include another file */ ROFF_IGN, /* ignore current line */ - ROFF_TBL, /* a table row was successfully parsed */ }; struct buf { --- 23,28 ---- *************** *** 33,39 **** struct mparse; - struct tbl_span; struct roff; struct roff_man; --- 32,37 ---- *************** *** 73,77 **** int roff_getcontrol(const struct roff *, const char *, int *); int roff_getformat(const struct roff *); - - const struct tbl_span *roff_span(const struct roff *); --- 71,73 ----