=================================================================== RCS file: /cvs/mandoc/roff.c,v retrieving revision 1.256 retrieving revision 1.257 diff -u -p -r1.256 -r1.257 --- mandoc/roff.c 2015/01/24 02:41:49 1.256 +++ mandoc/roff.c 2015/01/28 15:03:45 1.257 @@ -1,4 +1,4 @@ -/* $Id: roff.c,v 1.256 2015/01/24 02:41:49 schwarze Exp $ */ +/* $Id: roff.c,v 1.257 2015/01/28 15:03:45 schwarze Exp $ */ /* * Copyright (c) 2010, 2011, 2012, 2014 Kristaps Dzonsons * Copyright (c) 2010-2015 Ingo Schwarze @@ -1237,7 +1237,13 @@ roff_parseln(struct roff *r, int ln, struct buf *buf, if (r->tbl != NULL && (t == ROFF_MAX || t == ROFF_TS)) { mandoc_msg(MANDOCERR_TBLMACRO, r->parse, ln, pos, buf->buf + spos); - return(ROFF_IGN); + if (t == ROFF_TS) + return(ROFF_IGN); + while (buf->buf[pos] != '\0' && buf->buf[pos] != ' ') + pos++; + while (buf->buf[pos] != '\0' && buf->buf[pos] == ' ') + pos++; + return(tbl_read(r->tbl, ln, buf->buf, pos)); } /*