diff options
author | Ingo Schwarze <schwarze@cvs.openbsd.org> | 2011-09-18 10:25:29 +0000 |
---|---|---|
committer | Ingo Schwarze <schwarze@cvs.openbsd.org> | 2011-09-18 10:25:29 +0000 |
commit | 4f50809e67b9f55a658e7971ff3fdb7315acd3d7 (patch) | |
tree | 8313e9c25a5e5ecc27954763967407abdb8ce6e2 /usr.bin/mandoc/libman.h | |
parent | a7ddd4c92498f0e8d565f15959dc99a464ec51a1 (diff) |
sync to version 1.11.5:
adding an implementation of the eqn(7) language
by kristaps@
So far, only .EQ/.EN blocks are handled, in-line equations are not, and
rendering is not yet very pretty, but the parser is fairly complete.
Diffstat (limited to 'usr.bin/mandoc/libman.h')
-rw-r--r-- | usr.bin/mandoc/libman.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/mandoc/libman.h b/usr.bin/mandoc/libman.h index 1d86d1026ef..e9ecec7da65 100644 --- a/usr.bin/mandoc/libman.h +++ b/usr.bin/mandoc/libman.h @@ -1,4 +1,4 @@ -/* $Id: libman.h,v 1.29 2011/04/24 16:22:02 schwarze Exp $ */ +/* $Id: libman.h,v 1.30 2011/09/18 10:25:28 schwarze Exp $ */ /* * Copyright (c) 2009, 2010, 2011 Kristaps Dzonsons <kristaps@bsd.lv> * @@ -36,7 +36,7 @@ struct man { struct man_node *last; /* the last parsed node */ struct man_node *first; /* the first parsed node */ struct man_meta meta; /* document meta-data */ - struct regset *regs; /* registers */ + struct roff *roff; }; #define MACRO_PROT_ARGS struct man *m, \ |