From 162ce81d3a61862bea3503763f631cf91bd28023 Mon Sep 17 00:00:00 2001 From: Kristaps Dzonsons Date: Mon, 2 Mar 2009 17:14:46 +0000 Subject: Added new old escape sequence \*[nn]. Initial correct .Bd support (still only text in literal displays). Symbols put into tables (character-encoding). --- validate.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'validate.c') diff --git a/validate.c b/validate.c index 0189cee3..ebd95aee 100644 --- a/validate.c +++ b/validate.c @@ -1,4 +1,4 @@ -/* $Id: validate.c,v 1.65 2009/02/28 14:40:07 kristaps Exp $ */ +/* $Id: validate.c,v 1.66 2009/03/02 17:14:46 kristaps Exp $ */ /* * Copyright (c) 2008 Kristaps Dzonsons * @@ -484,7 +484,7 @@ check_text(struct mdoc *mdoc, int line, int pos, const char *p) for ( ; *p; p++) { if ( ! isprint((int)*p) && '\t' != *p) return(mdoc_perr(mdoc, line, pos, - "invalid characters")); + "invalid non-printing characters")); if ('\\' != *p) continue; if ((c = mdoc_isescape(p))) { -- cgit v1.2.3