From d9ece81ad9ffdf688f6492fc9e8018bf7e91e603 Mon Sep 17 00:00:00 2001 From: Kristaps Dzonsons Date: Tue, 30 Nov 2010 13:04:14 +0000 Subject: mdoc_action.c is no more. Attic it and remove it from the Makefile. Remove references to MDOC_ACTED (it was only assertions) and the pre- and post-action functions. --- mdoc.c | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) (limited to 'mdoc.c') diff --git a/mdoc.c b/mdoc.c index 103a8a88..930d2071 100644 --- a/mdoc.c +++ b/mdoc.c @@ -1,4 +1,4 @@ -/* $Id: mdoc.c,v 1.165 2010/09/27 23:03:44 schwarze Exp $ */ +/* $Id: mdoc.c,v 1.166 2010/11/30 13:04:14 kristaps Exp $ */ /* * Copyright (c) 2008, 2009, 2010 Kristaps Dzonsons * Copyright (c) 2010 Ingo Schwarze @@ -328,8 +328,6 @@ node_append(struct mdoc *mdoc, struct mdoc_node *p) if ( ! mdoc_valid_pre(mdoc, p)) return(0); - if ( ! mdoc_action_pre(mdoc, p)) - return(0); switch (p->type) { case (MDOC_HEAD): @@ -356,8 +354,6 @@ node_append(struct mdoc *mdoc, struct mdoc_node *p) case (MDOC_TEXT): if ( ! mdoc_valid_post(mdoc)) return(0); - if ( ! mdoc_action_post(mdoc)) - return(0); break; default: break; -- cgit v1.2.3