diff options
author | Ingo Schwarze <schwarze@cvs.openbsd.org> | 2010-01-03 20:00:00 +0000 |
---|---|---|
committer | Ingo Schwarze <schwarze@cvs.openbsd.org> | 2010-01-03 20:00:00 +0000 |
commit | c31c16a922295865d6d84602f121552b52b82ad2 (patch) | |
tree | c26adf5f2ddb83856012a1566a06645bfad44ea0 /usr.bin | |
parent | 7573f7b10da89c17e8fa93da812600c7f77a855c (diff) |
Install mandoc_char(7), a comprehensive overview of mandoc(1) special
characters and predefined strings.
In kristaps@'s words:
"Note that mandoc_char(7) is a superset of the latest groff_char(7)
(which defines most special characters), groff(7) (more special
characters, mostly formatting), and mdoc_samples(7) (predefined
strings and other nits). Thus, some of the characters that mandoc(1)
accepts are not accepted by the groff in OpenBSD base."
This is useful because you now have everything in one place, and
in a form authoritative for mandoc(1). At least as long as we still
have groff(1) in base, we must keep groff_char(7) as well, of course.
"sure" jmc@
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/mandoc/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/usr.bin/mandoc/Makefile b/usr.bin/mandoc/Makefile index 011bd7c4454..3568e3302a4 100644 --- a/usr.bin/mandoc/Makefile +++ b/usr.bin/mandoc/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.25 2010/01/02 02:42:06 schwarze Exp $ +# $OpenBSD: Makefile,v 1.26 2010/01/03 19:59:59 schwarze Exp $ .include <bsd.own.mk> @@ -17,6 +17,7 @@ SRCS+= man_macro.c man.c man_hash.c man_validate.c \ SRCS+= main.c mdoc_term.c chars.c term.c tree.c man_term.c SRCS+= html.c mdoc_html.c man_html.c out.c -PROG= mandoc +PROG= mandoc +MAN= mandoc.1 mandoc_char.7 .include <bsd.prog.mk> |