diff options
author | Ingo Schwarze <schwarze@cvs.openbsd.org> | 2011-04-24 16:22:03 +0000 |
---|---|---|
committer | Ingo Schwarze <schwarze@cvs.openbsd.org> | 2011-04-24 16:22:03 +0000 |
commit | 8f4d5715119f71fe84fabe1ac036212fb9cd6dd4 (patch) | |
tree | 4595e6b302aaf0ccfc79216f87c3cccdca69b3b5 /usr.bin/mandoc/msec.c | |
parent | 1752cec47372d4848aa06c33133bac2b1f479dba (diff) |
Merge version 1.11.1:
Again lots of cleanup and maintenance work by kristaps@.
- simplify error reporting: less function pointers, more mandoc_[v]msg
- main: split document parsing out of main.c into read.c
- roff, mdoc, man: improved recognition of control characters
- roff: better handling of if/else stack overflows
- roff: add some predefined strings for backward compatibility
- mdoc, man: empty sections are not errors
- mdoc: move delimiter handling to libmdoc
- some header restructuring and some minor features and fixes
This merge causes two minor regressions
that i will fix in separate commits right afterwards.
Diffstat (limited to 'usr.bin/mandoc/msec.c')
-rw-r--r-- | usr.bin/mandoc/msec.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/mandoc/msec.c b/usr.bin/mandoc/msec.c index 9eac9abf39c..e5bbcf0b265 100644 --- a/usr.bin/mandoc/msec.c +++ b/usr.bin/mandoc/msec.c @@ -1,4 +1,4 @@ -/* $Id: msec.c,v 1.5 2010/05/24 02:29:02 schwarze Exp $ */ +/* $Id: msec.c,v 1.6 2011/04/24 16:22:02 schwarze Exp $ */ /* * Copyright (c) 2009 Kristaps Dzonsons <kristaps@bsd.lv> * @@ -17,6 +17,7 @@ #include <stdlib.h> #include <string.h> +#include "mdoc.h" #include "mandoc.h" #include "libmdoc.h" |