diff options
author | Ingo Schwarze <schwarze@cvs.openbsd.org> | 2010-07-13 01:09:14 +0000 |
---|---|---|
committer | Ingo Schwarze <schwarze@cvs.openbsd.org> | 2010-07-13 01:09:14 +0000 |
commit | e9b951945dc38a4e3dc83dd8e0399dc1a08fe8cd (patch) | |
tree | 8adb2b78afb78bbef96c97bb241f424313ee1c0f /usr.bin/mandoc/tree.c | |
parent | 054b6b3da40ba80d5639872ad891420ae5d63c27 (diff) |
Merge release 1.10.4 (all code by kristaps@), providing four new features:
1) Proper .Bk support: allow output line breaks at input line breaks,
but keep input lines together in the output, finally fixing
synopses like aucat(1), mail(1) and tmux(1).
2) Mostly finished -Tps (PostScript) output.
3) Implement -Thtml output for .Nm blocks and .Bk -words.
4) Allow iterative interpolation of user-defined roff(7) strings.
Also contains some minor bugfixes and some performance improvements.
Diffstat (limited to 'usr.bin/mandoc/tree.c')
-rw-r--r-- | usr.bin/mandoc/tree.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/usr.bin/mandoc/tree.c b/usr.bin/mandoc/tree.c index 82c7e09bf57..b775ca1edc7 100644 --- a/usr.bin/mandoc/tree.c +++ b/usr.bin/mandoc/tree.c @@ -1,4 +1,4 @@ -/* $Id: tree.c,v 1.9 2010/06/29 17:10:30 schwarze Exp $ */ +/* $Id: tree.c,v 1.10 2010/07/13 01:09:13 schwarze Exp $ */ /* * Copyright (c) 2008, 2009 Kristaps Dzonsons <kristaps@bsd.lv> * @@ -20,7 +20,6 @@ #include <time.h> #include "mandoc.h" -#include "regs.h" #include "mdoc.h" #include "man.h" #include "main.h" |