diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2009-06-27 09:03:03 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2009-06-27 09:03:03 +0000 |
commit | d4911e32db795a6549559dd6175abf1f7dc21bc1 (patch) | |
tree | 92c106df57f04d37819bd906341c606797c494c5 /mdoc_validate.c | |
parent | ad225a6a2b6bfdf877e313273105ffa4a27043a0 (diff) | |
download | mandoc-d4911e32db795a6549559dd6175abf1f7dc21bc1.tar.gz |
Removed escape-deprecation note (better solution in progress, schwarze@openbsd.org).
Using EXIT_FAILURE for parse errors (nicm@openbsd.org).
Fixed use of warn/warnx (nicm@openbsd.org).
Fixed use of getsubopt (nicm@openbsd.org).
Diffstat (limited to 'mdoc_validate.c')
-rw-r--r-- | mdoc_validate.c | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/mdoc_validate.c b/mdoc_validate.c index 3aa69cb2..139fa875 100644 --- a/mdoc_validate.c +++ b/mdoc_validate.c @@ -55,7 +55,6 @@ enum mwarn { WNOWIDTH, WMISSWIDTH, WESCAPE, - WDEPESC, WDEPCOL, WWRONGMSEC, WSECOOO, @@ -486,9 +485,6 @@ pwarn(struct mdoc *m, int line, int pos, enum mwarn type) case (WESCAPE): p = "invalid escape sequence"; break; - case (WDEPESC): - p = "deprecated special-character escape"; - break; case (WNOLINE): p = "suggested no line arguments"; break; @@ -728,10 +724,6 @@ check_text(struct mdoc *mdoc, int line, int pos, const char *p) c = mdoc_isescape(p); if (c) { - /* See if form is deprecated. */ - if ('*' == p[1]) - if ( ! pwarn(mdoc, line, pos, WDEPESC)) - return(0); p += (int)c - 1; continue; } |