diff options
author | 2009-07-13 01:00:50 +0000 | |
---|---|---|
committer | 2009-07-13 01:00:50 +0000 | |
commit | ba9b0c330ba8b252dff1acae721321f61fe87216 (patch) | |
tree | 3c8637da266a16d70b5329835c605afd6b90a152 | |
parent | now in sync with release 1.7.24 (diff) | |
download | wireguard-openbsd-ba9b0c330ba8b252dff1acae721321f61fe87216.tar.xz wireguard-openbsd-ba9b0c330ba8b252dff1acae721321f61fe87216.zip |
fix a trivial pasto that crept into 1.7.23; also submitted upstream
-rw-r--r-- | usr.bin/mandoc/mdoc_validate.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/mandoc/mdoc_validate.c b/usr.bin/mandoc/mdoc_validate.c index 7bd8321ed8b..106394929ce 100644 --- a/usr.bin/mandoc/mdoc_validate.c +++ b/usr.bin/mandoc/mdoc_validate.c @@ -1,4 +1,4 @@ -/* $Id: mdoc_validate.c,v 1.23 2009/07/13 00:33:40 schwarze Exp $ */ +/* $Id: mdoc_validate.c,v 1.24 2009/07/13 01:00:50 schwarze Exp $ */ /* * Copyright (c) 2008, 2009 Kristaps Dzonsons <kristaps@kth.se> * @@ -534,7 +534,7 @@ check_text(struct mdoc *mdoc, int line, int pos, const char *p) } if ( ! (MDOC_IGN_ESCAPE & mdoc->pflags)) return(mdoc_perr(mdoc, line, pos, EESCAPE)); - if ( ! mdoc_perr(mdoc, line, pos, EESCAPE)) + if ( ! mdoc_pwarn(mdoc, line, pos, EESCAPE)) return(0); } |