From 114032c297cb0cb196cf5356723060c257a60f4d Mon Sep 17 00:00:00 2001 From: Ingo Schwarze Date: Thu, 20 Jun 2013 22:39:30 +0000 Subject: Improve handling of the roff(7) "\t" escape sequence: * Parsing macro arguments has to be done in copy mode, which implies replacing "\t" by a literal tab character. * Otherwise, render "\t" as the empty string, not as a 't' character. This fixes formatting of the distfile example in the oldrdist(1) manual. This also shows up in the unzip(1) manual as one of several issues preventing the removal of USE_GROFF from the archivers/unzip port. Thanks to espie@ for attracting my attention to the unzip(1) manual. --- chars.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'chars.c') diff --git a/chars.c b/chars.c index 8b4f6b64..3ad1f574 100644 --- a/chars.c +++ b/chars.c @@ -1,4 +1,4 @@ -/* $Id: chars.c,v 1.53 2013/05/18 16:40:15 schwarze Exp $ */ +/* $Id: chars.c,v 1.54 2013/06/20 22:39:30 schwarze Exp $ */ /* * Copyright (c) 2009, 2010, 2011 Kristaps Dzonsons * Copyright (c) 2011 Ingo Schwarze @@ -37,7 +37,7 @@ struct ln { int unicode; }; -#define LINES_MAX 328 +#define LINES_MAX 329 #define CHAR(in, ch, code) \ { NULL, (in), (ch), (code) }, -- cgit v1.2.3