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/man_term.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/man_term.c')
-rw-r--r-- | usr.bin/mandoc/man_term.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/usr.bin/mandoc/man_term.c b/usr.bin/mandoc/man_term.c index 868f93a6058..dfb4463f1e7 100644 --- a/usr.bin/mandoc/man_term.c +++ b/usr.bin/mandoc/man_term.c @@ -1,6 +1,6 @@ -/* $Id: man_term.c,v 1.43 2010/06/27 21:54:42 schwarze Exp $ */ +/* $Id: man_term.c,v 1.44 2010/07/13 01:09:13 schwarze Exp $ */ /* - * Copyright (c) 2008, 2009 Kristaps Dzonsons <kristaps@bsd.lv> + * Copyright (c) 2008, 2009, 2010 Kristaps Dzonsons <kristaps@bsd.lv> * * Permission to use, copy, modify, and distribute this software for any * purpose with or without fee is hereby granted, provided that the above @@ -24,7 +24,6 @@ #include "mandoc.h" #include "out.h" -#include "regs.h" #include "man.h" #include "term.h" #include "chars.h" |