aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/roff.c
diff options
context:
space:
mode:
authorIngo Schwarze <schwarze@openbsd.org>2015-01-21 02:16:52 +0000
committerIngo Schwarze <schwarze@openbsd.org>2015-01-21 02:16:52 +0000
commit46f82690deadc4b45754c269d39a26637dc8925d (patch)
tree4d37a1d2159b515a8785c322293c7ca60d62af05 /roff.c
parentf226d0c041ab711f61ea445f2e8826262e4e7f8a (diff)
downloadmandoc-46f82690deadc4b45754c269d39a26637dc8925d.tar.gz
mandoc-46f82690deadc4b45754c269d39a26637dc8925d.tar.zst
mandoc-46f82690deadc4b45754c269d39a26637dc8925d.zip
pass empty request lines through to tbl(7); sometimes, they end a layout
Diffstat (limited to 'roff.c')
-rw-r--r--roff.c21
1 files changed, 10 insertions, 11 deletions
diff --git a/roff.c b/roff.c
index 87caa47b..f9a4166b 100644
--- a/roff.c
+++ b/roff.c
@@ -1,4 +1,4 @@
-/* $Id: roff.c,v 1.251 2015/01/20 21:16:51 schwarze Exp $ */
+/* $Id: roff.c,v 1.252 2015/01/21 02:16:52 schwarze Exp $ */
/*
* Copyright (c) 2010, 2011, 2012, 2014 Kristaps Dzonsons <kristaps@bsd.lv>
* Copyright (c) 2010-2015 Ingo Schwarze <schwarze@openbsd.org>
@@ -1166,13 +1166,13 @@ roff_parseln(struct roff *r, int ln, struct buf *buf, int *offs)
/*
* First, if a scope is open and we're not a macro, pass the
- * text through the macro's filter. If a scope isn't open and
- * we're not a macro, just let it through.
- * Finally, if there's an equation scope open, divert it into it
- * no matter our state.
+ * text through the macro's filter.
+ * Equations process all content themselves.
+ * Tables process almost all content themselves, but we want
+ * to warn about macros before passing it there.
*/
- if (r->last && ! ctl) {
+ if (r->last != NULL && ! ctl) {
t = r->last->tok;
assert(roffs[t].text);
e = (*roffs[t].text)(r, t, buf, ln, pos, pos, offs);
@@ -1180,13 +1180,12 @@ roff_parseln(struct roff *r, int ln, struct buf *buf, int *offs)
if (e != ROFF_CONT)
return(e);
}
- if (r->eqn)
+ if (r->eqn != NULL)
return(eqn_read(&r->eqn, ln, buf->buf, ppos, offs));
- if ( ! ctl) {
- if (r->tbl)
- return(tbl_read(r->tbl, ln, buf->buf, pos));
+ if (r->tbl != NULL && ( ! ctl || buf->buf[pos] == '\0'))
+ return(tbl_read(r->tbl, ln, buf->buf, pos));
+ if ( ! ctl)
return(roff_parsetext(buf, pos, offs));
- }
/* Skip empty request lines. */