summaryrefslogtreecommitdiff
path: root/usr.bin/mandoc/mdoc.h
diff options
context:
space:
mode:
authorIngo Schwarze <schwarze@cvs.openbsd.org>2014-03-23 12:44:19 +0000
committerIngo Schwarze <schwarze@cvs.openbsd.org>2014-03-23 12:44:19 +0000
commit7c80f808f2a6f2f74648b2456aa6b00cbb3691b8 (patch)
tree9cc53d9f59ec93fa7cdb8a0f057dd6a91fb01984 /usr.bin/mandoc/mdoc.h
parent08c44f701bf55ff1d7e25f33192a9d4ac8588ffe (diff)
If an .Nd block contains macros, avoid fragmented entries in mandocdb(8),
instead use the .Nd content recursively. Improves a couple of index entries in base.
Diffstat (limited to 'usr.bin/mandoc/mdoc.h')
-rw-r--r--usr.bin/mandoc/mdoc.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/mandoc/mdoc.h b/usr.bin/mandoc/mdoc.h
index 763cc2a9c95..cd2a18dd141 100644
--- a/usr.bin/mandoc/mdoc.h
+++ b/usr.bin/mandoc/mdoc.h
@@ -1,4 +1,4 @@
-/* $Id: mdoc.h,v 1.49 2013/12/24 19:10:34 schwarze Exp $ */
+/* $Id: mdoc.h,v 1.50 2014/03/23 12:44:18 schwarze Exp $ */
/*
* Copyright (c) 2008, 2009, 2010, 2011 Kristaps Dzonsons <kristaps@bsd.lv>
*
@@ -389,6 +389,7 @@ struct mdoc;
const struct mdoc_node *mdoc_node(const struct mdoc *);
const struct mdoc_meta *mdoc_meta(const struct mdoc *);
+void mdoc_deroff(char **, const struct mdoc_node *);
__END_DECLS