From 7355c805552e6fc47e10d976711b6169f0f3c0e0 Mon Sep 17 00:00:00 2001 From: Ingo Schwarze Date: Thu, 2 Apr 2015 23:48:19 +0000 Subject: Third step towards parser unification: Replace struct mdoc_meta and struct man_meta by a unified struct roff_meta. Written of the train from London to Exeter on the way to p2k15. --- libman.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libman.h') diff --git a/libman.h b/libman.h index eeff4a9b..7404b795 100644 --- a/libman.h +++ b/libman.h @@ -33,7 +33,7 @@ struct man { enum man_next next; /* where to put the next node */ struct roff_node *last; /* the last parsed node */ struct roff_node *first; /* the first parsed node */ - struct man_meta meta; /* document meta-data */ + struct roff_meta meta; /* document meta-data */ struct roff *roff; }; -- cgit