diff options
author | 2010-12-01 23:02:57 +0000 | |
---|---|---|
committer | 2010-12-01 23:02:57 +0000 | |
commit | 8dc07b1e5b7328d427a8f5fb8184bdd32a1bd69a (patch) | |
tree | d631a9acd00d6306bb608fb7a66b626c3d13a13e /usr.bin/mandoc/man.c | |
parent | Merge mdoc_action.c into mdoc_validate.c, because having two places to do (diff) | |
download | wireguard-openbsd-8dc07b1e5b7328d427a8f5fb8184bdd32a1bd69a.tar.xz wireguard-openbsd-8dc07b1e5b7328d427a8f5fb8184bdd32a1bd69a.zip |
Merge man_action.c into man_validate.c.
Same as for mdoc_action.c, but much simpler.
Work by kristaps@, re-applying OpenBSD changes on top.
Diffstat (limited to 'usr.bin/mandoc/man.c')
-rw-r--r-- | usr.bin/mandoc/man.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/usr.bin/mandoc/man.c b/usr.bin/mandoc/man.c index 421ed139c15..8778aea1408 100644 --- a/usr.bin/mandoc/man.c +++ b/usr.bin/mandoc/man.c @@ -1,4 +1,4 @@ -/* $Id: man.c,v 1.47 2010/11/29 02:26:45 schwarze Exp $ */ +/* $Id: man.c,v 1.48 2010/12/01 23:02:59 schwarze Exp $ */ /* * Copyright (c) 2008, 2009, 2010 Kristaps Dzonsons <kristaps@bsd.lv> * @@ -228,8 +228,6 @@ man_node_append(struct man *man, struct man_node *p) case (MAN_TEXT): if ( ! man_valid_post(man)) return(0); - if ( ! man_action_post(man)) - return(0); break; default: break; |