diff options
author | Ingo Schwarze <schwarze@openbsd.org> | 2015-04-02 23:48:19 +0000 |
---|---|---|
committer | Ingo Schwarze <schwarze@openbsd.org> | 2015-04-02 23:48:19 +0000 |
commit | 7355c805552e6fc47e10d976711b6169f0f3c0e0 (patch) | |
tree | 8ad95f5fc9d0dbda235694991290ea83f7484abe /libman.h | |
parent | 9e6e3b6be0e9ffe29cf4876ce0b7ded2c3c386b9 (diff) | |
download | mandoc-7355c805552e6fc47e10d976711b6169f0f3c0e0.tar.gz |
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.
Diffstat (limited to 'libman.h')
-rw-r--r-- | libman.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; }; |