From d43a3b25e58b22f878cf000f42454792b509cd9d Mon Sep 17 00:00:00 2001 From: Kristaps Dzonsons Date: Wed, 26 May 2010 14:03:54 +0000 Subject: Allow bad -man dates to flow verbatim into the front-ends. Noted by Ulrich Spoerlein. --- man_term.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'man_term.c') diff --git a/man_term.c b/man_term.c index c6b3dc06..c637a309 100644 --- a/man_term.c +++ b/man_term.c @@ -1,4 +1,4 @@ -/* $Id: man_term.c,v 1.71 2010/05/17 22:11:42 kristaps Exp $ */ +/* $Id: man_term.c,v 1.72 2010/05/26 14:03:54 kristaps Exp $ */ /* * Copyright (c) 2008, 2009 Kristaps Dzonsons * @@ -864,7 +864,10 @@ print_man_foot(struct termp *p, const struct man_meta *meta) term_fontrepl(p, TERMFONT_NONE); - time2a(meta->date, buf, DATESIZ); + if (meta->rawdate) + strlcpy(buf, meta->rawdate, DATESIZ); + else + time2a(meta->date, buf, DATESIZ); term_vspace(p); term_vspace(p); -- cgit v1.2.3-56-ge451