From 6e74e86e44514ebe15ac91e3d2d8aa05b8fdf34b Mon Sep 17 00:00:00 2001 From: Ingo Schwarze Date: Mon, 20 Oct 2014 15:50:24 +0000 Subject: correct the spacing after in-line equations that start at the beginning of an input line but end before the end of an input line --- man.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'man.c') diff --git a/man.c b/man.c index 849ee7c0..66c6c3e6 100644 --- a/man.c +++ b/man.c @@ -1,4 +1,4 @@ -/* $Id: man.c,v 1.140 2014/10/20 02:33:06 schwarze Exp $ */ +/* $Id: man.c,v 1.141 2014/10/20 15:50:24 schwarze Exp $ */ /* * Copyright (c) 2008, 2009, 2010, 2011 Kristaps Dzonsons * Copyright (c) 2013, 2014 Ingo Schwarze @@ -119,7 +119,8 @@ int man_parseln(struct man *man, int ln, char *buf, int offs) { - man->flags |= MAN_NEWLINE; + if (man->last->type != MAN_EQN || ln > man->last->line) + man->flags |= MAN_NEWLINE; return (roff_getcontrol(man->roff, buf, &offs) ? man_pmacro(man, ln, buf, offs) : -- cgit v1.2.3