From 3750eff2e772d68cf2aec04f8b0840199724fa73 Mon Sep 17 00:00:00 2001 From: Kristaps Dzonsons Date: Fri, 24 Jul 2009 11:54:25 +0000 Subject: Text tokens with leading whitespace (like indented blocks in `Bd -literal') are printed correctly. --- term.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'term.c') diff --git a/term.c b/term.c index 406b7a10..89a4a34f 100644 --- a/term.c +++ b/term.c @@ -1,4 +1,4 @@ -/* $Id: term.c,v 1.92 2009/07/23 08:35:22 kristaps Exp $ */ +/* $Id: term.c,v 1.93 2009/07/24 11:54:25 kristaps Exp $ */ /* * Copyright (c) 2008, 2009 Kristaps Dzonsons * @@ -259,7 +259,7 @@ term_flushln(struct termp *p) /* LINTED */ for (j = i, vsz = 0; j < (int)p->col; j++) { - if (' ' == p->buf[j]) + if (j && ' ' == p->buf[j]) break; else if (8 == p->buf[j]) vsz--; -- cgit v1.2.3