summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--man_macro.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/man_macro.c b/man_macro.c
index 844d41e9..7cc8a7e7 100644
--- a/man_macro.c
+++ b/man_macro.c
@@ -297,8 +297,10 @@ blk_exp(MACRO_PROT_ARGS)
char *p;
int la;
- if (tok == MAN_RS)
+ if (tok == MAN_RS) {
rew_scope(man, tok);
+ man->flags |= ROFF_NONOFILL;
+ }
roff_block_alloc(man, line, ppos, tok);
head = roff_head_alloc(man, line, ppos, tok);
@@ -322,6 +324,7 @@ blk_exp(MACRO_PROT_ARGS)
man_unscope(man, head);
roff_body_alloc(man, line, ppos, tok);
+ man->flags &= ~ROFF_NONOFILL;
}
/*