diff options
-rw-r--r-- | index.sgml | 1 | ||||
-rw-r--r-- | man_validate.c | 2 | ||||
-rw-r--r-- | mdoc_validate.c | 2 |
3 files changed, 3 insertions, 2 deletions
@@ -252,6 +252,7 @@ <TBODY> <TR> <TD VALIGN="top"><SPAN CLASS="date">xx-05-2010</SPAN></TD> + <TD VALIGN="top"> Day 1 of Rostock hackathon: proper handling of quotations in tab-separated column lists, finished patching of SYNOPSIS breaking (1.9.25), fixed pre-comment white-space stripping, added end-of-sentence spacing to black partial-implicit diff --git a/man_validate.c b/man_validate.c index c568e4cb..362b0da9 100644 --- a/man_validate.c +++ b/man_validate.c @@ -223,7 +223,7 @@ check_text(CHKARGS) return(c); } - if ('\t' == *p || isprint((u_char)*p)) + if ('\t' == *p || isprint((u_char)*p) || ASCII_HYPH == *p) continue; if ( ! man_pmsg(m, n->line, pos, MANDOCERR_BADCHAR)) return(0); diff --git a/mdoc_validate.c b/mdoc_validate.c index a4852804..7527cfb0 100644 --- a/mdoc_validate.c +++ b/mdoc_validate.c @@ -463,7 +463,7 @@ check_text(struct mdoc *mdoc, int line, int pos, const char *p) if ( ! (MDOC_LITERAL & mdoc->flags)) if ( ! mdoc_pmsg(mdoc, line, pos, MANDOCERR_BADCHAR)) return(0); - } else if ( ! isprint((u_char)*p)) + } else if ( ! isprint((u_char)*p) && ASCII_HYPH != *p) if ( ! mdoc_pmsg(mdoc, line, pos, MANDOCERR_BADCHAR)) return(0); |