From dbcb21471c73a93f9436d4a342a5cc07d74fbf47 Mon Sep 17 00:00:00 2001 From: Kristaps Dzonsons Date: Wed, 9 Jun 2010 08:07:13 +0000 Subject: Have the standard manpage header and footer print on every page of -Tps output. This is more tricky than you may think: we can't just call the header function out-of-state (i.e., before a flushln has occured) because we'd clobber our current state. Thus, we call at the beginning and dump the output into an auxiliary buffer. For the record, I don't think there's any other clean way to do this. The only other Way That Works is to copy-aside *all* termp state, zero it, and do the necessary headf/footf. This is just as complex, as memory needs to be alloc'd and free'd per margin. Unfortunately, this prohibits page numbering (the margin is only printed once), so I'll probably end up re-writing this down the line. --- term_ascii.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'term_ascii.c') diff --git a/term_ascii.c b/term_ascii.c index d38450e5..017aa417 100644 --- a/term_ascii.c +++ b/term_ascii.c @@ -1,4 +1,4 @@ -/* $Id: term_ascii.c,v 1.2 2010/06/08 15:06:01 kristaps Exp $ */ +/* $Id: term_ascii.c,v 1.3 2010/06/09 08:07:13 kristaps Exp $ */ /* * Copyright (c) 2008, 2009 Kristaps Dzonsons * @@ -87,7 +87,6 @@ static void ascii_letter(struct termp *p, char c) { - /* Just push onto the screen. */ putchar(c); } -- cgit v1.2.3