summaryrefslogtreecommitdiffstats
path: root/man_macro.c
diff options
context:
space:
mode:
Diffstat (limited to 'man_macro.c')
-rw-r--r--man_macro.c9
1 files changed, 8 insertions, 1 deletions
diff --git a/man_macro.c b/man_macro.c
index 43249161..077e1264 100644
--- a/man_macro.c
+++ b/man_macro.c
@@ -71,7 +71,7 @@ static const struct man_macro man_macros[MAN_MAX - MAN_TH] = {
{ in_line_eoln, MAN_NSCOPED }, /* PD */
{ in_line_eoln, 0 }, /* AT */
{ in_line_eoln, MAN_NSCOPED }, /* in */
- { blk_exp, MAN_BSCOPE }, /* SY */
+ { blk_imp, MAN_BSCOPE }, /* SY */
{ blk_close, MAN_BSCOPE }, /* YS */
{ in_line_eoln, 0 }, /* OP */
{ in_line_eoln, MAN_BSCOPE }, /* EX */
@@ -270,6 +270,13 @@ blk_close(MACRO_PROT_ARGS)
*pos = strlen(buf);
blk_imp(man, ctok, cline, cpos, pos, buf);
}
+
+ /* Synopsis blocks need an explicit end marker for spacing. */
+
+ if (tok == MAN_YS && man->last == nn) {
+ roff_elem_alloc(man, line, ppos, tok);
+ man_unscope(man, man->last);
+ }
}
void