diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2009-03-08 11:48:44 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2009-03-08 11:48:44 +0000 |
commit | ca7eb2795830f918afc855b2fdaabe093d8cee13 (patch) | |
tree | 6b4071e54b2c7eb6d62bb776dc458e4dcbda4281 | |
parent | 056d0c68fbd56e3ce25fe3ad8c58ade0ab30a1b4 (diff) | |
download | mandoc-ca7eb2795830f918afc855b2fdaabe093d8cee13.tar.gz |
Printing invalid escape sequences.
-rw-r--r-- | validate.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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); |