diff options
author | 2009-06-18 21:08:29 +0000 | |
---|---|---|
committer | 2009-06-18 21:08:29 +0000 | |
commit | b80a49226e7de095dda6d69a9d25b36765e54256 (patch) | |
tree | a4a0e616c60cf843e563bff72df1db7ce8ee8f60 /usr.bin/mandoc/mdoc_validate.c | |
parent | sync to 1.7.16: use dedicated warning types for list validation (diff) | |
download | wireguard-openbsd-b80a49226e7de095dda6d69a9d25b36765e54256.tar.xz wireguard-openbsd-b80a49226e7de095dda6d69a9d25b36765e54256.zip |
sync to 1.7.16: The .Er macro may also be used in sections (3) and (9).
Diffstat (limited to 'usr.bin/mandoc/mdoc_validate.c')
-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 a576afcea3d..e8a7b48613e 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.5 2009/06/18 20:59:49 schwarze Exp $ */ +/* $Id: mdoc_validate.c,v 1.6 2009/06/18 21:08:29 schwarze Exp $ */ /* * Copyright (c) 2008, 2009 Kristaps Dzonsons <kristaps@kth.se> * @@ -996,7 +996,7 @@ static int pre_er(PRE_ARGS) { - return(check_msec(mdoc, n, 2, 0)); + return(check_msec(mdoc, n, 2, 3, 9, 0)); } |