From 4fe082dae51b8658b571fd06b8f39737874a7eaa Mon Sep 17 00:00:00 2001 From: Ingo Schwarze Date: Sat, 18 Aug 2018 14:02:56 +0000 Subject: Two consecutive .SY blocks only get a blank line in between if the first one is explicitly closed with .YS. --- man_term.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'man_term.c') diff --git a/man_term.c b/man_term.c index 64661564..8ab3c423 100644 --- a/man_term.c +++ b/man_term.c @@ -1,4 +1,4 @@ -/* $Id: man_term.c,v 1.216 2018/08/18 13:05:10 schwarze Exp $ */ +/* $Id: man_term.c,v 1.217 2018/08/18 14:02:56 schwarze Exp $ */ /* * Copyright (c) 2008-2012 Kristaps Dzonsons * Copyright (c) 2010-2015, 2017, 2018 Ingo Schwarze @@ -861,7 +861,8 @@ pre_SY(DECL_ARGS) switch (n->type) { case ROFFT_BLOCK: - print_bvspace(p, n, mt->pardist); + if (n->prev == NULL || n->prev->tok != MAN_SY) + print_bvspace(p, n, mt->pardist); return 1; case ROFFT_HEAD: case ROFFT_BODY: -- cgit v1.2.3