diff options
author | 2018-08-18 20:41:50 +0000 | |
---|---|---|
committer | 2018-08-18 20:41:50 +0000 | |
commit | ce96ce1a61cdeef560ffd88187e814885983292d (patch) | |
tree | 7ed385985faefba32177a2b26802275b572ee98f /usr.bin/mandoc/man_macro.c | |
parent | If a tbl(7) column contains both text cells and numeric cells, (diff) | |
download | wireguard-openbsd-ce96ce1a61cdeef560ffd88187e814885983292d.tar.xz wireguard-openbsd-ce96ce1a61cdeef560ffd88187e814885983292d.zip |
paragraphs can contain .MT and .UR blocks
Diffstat (limited to 'usr.bin/mandoc/man_macro.c')
-rw-r--r-- | usr.bin/mandoc/man_macro.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/usr.bin/mandoc/man_macro.c b/usr.bin/mandoc/man_macro.c index d3f4c66d955..564df88f208 100644 --- a/usr.bin/mandoc/man_macro.c +++ b/usr.bin/mandoc/man_macro.c @@ -1,4 +1,4 @@ -/* $OpenBSD: man_macro.c,v 1.93 2018/08/18 17:32:06 schwarze Exp $ */ +/* $OpenBSD: man_macro.c,v 1.94 2018/08/18 20:41:50 schwarze Exp $ */ /* * Copyright (c) 2008, 2009, 2010, 2011 Kristaps Dzonsons <kristaps@bsd.lv> * Copyright (c) 2012-2015, 2017, 2018 Ingo Schwarze <schwarze@openbsd.org> @@ -292,7 +292,8 @@ blk_exp(MACRO_PROT_ARGS) char *p; int la; - rew_scope(man, tok); + if (tok == MAN_RS) + rew_scope(man, tok); roff_block_alloc(man, line, ppos, tok); head = roff_head_alloc(man, line, ppos, tok); |