From: Kristaps Dzonsons Date: Sun, 8 Mar 2009 11:48:44 +0000 (+0000) Subject: Printing invalid escape sequences. X-Git-Tag: VERSION_1_4_2~13 X-Git-Url: https://git.cameronkatri.com/mandoc.git/commitdiff_plain/d53f3eea978ab62538513a30e29ca8c1da6f9c45?ds=sidebyside Printing invalid escape sequences. --- diff --git a/validate.c b/validate.c index 45330b7d..2ebd427d 100644 --- a/validate.c +++ b/validate.c @@ -1,4 +1,4 @@ -/* $Id: validate.c,v 1.71 2009/03/08 11:41:22 kristaps Exp $ */ +/* $Id: validate.c,v 1.72 2009/03/08 11:48:44 kristaps Exp $ */ /* * Copyright (c) 2008 Kristaps Dzonsons * @@ -685,7 +685,7 @@ check_text(struct mdoc *mdoc, int line, int pos, const char *p) continue; } return(mdoc_perr(mdoc, line, pos, - "invalid escape sequence")); + "invalid escape sequence: %s", p)); } return(1);