diff options
author | 2020-04-18 20:28:46 +0000 | |
---|---|---|
committer | 2020-04-18 20:28:46 +0000 | |
commit | 6e2a0df93b26b20049df54aff0406fb853fa3e0b (patch) | |
tree | 0af4686781ea4e362a8df80a51519cbd4367f0b7 /usr.bin/mandoc/man_validate.c | |
parent | SPI_SA(sa, NULL) already prints a colon. (diff) | |
download | wireguard-openbsd-6e2a0df93b26b20049df54aff0406fb853fa3e0b.tar.xz wireguard-openbsd-6e2a0df93b26b20049df54aff0406fb853fa3e0b.zip |
When a .Tg is attached to a paragraph, attach the permalink
to the first word, or the first few words if they are short.
Diffstat (limited to 'usr.bin/mandoc/man_validate.c')
-rw-r--r-- | usr.bin/mandoc/man_validate.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/mandoc/man_validate.c b/usr.bin/mandoc/man_validate.c index 0b28fe4a173..023a81e0efd 100644 --- a/usr.bin/mandoc/man_validate.c +++ b/usr.bin/mandoc/man_validate.c @@ -1,4 +1,4 @@ -/* $OpenBSD: man_validate.c,v 1.122 2020/04/04 20:23:07 schwarze Exp $ */ +/* $OpenBSD: man_validate.c,v 1.123 2020/04/18 20:28:46 schwarze Exp $ */ /* * Copyright (c) 2010, 2012-2020 Ingo Schwarze <schwarze@openbsd.org> * Copyright (c) 2008, 2009, 2010, 2011 Kristaps Dzonsons <kristaps@bsd.lv> @@ -32,11 +32,11 @@ #include "mandoc_aux.h" #include "mandoc.h" #include "roff.h" -#include "tag.h" #include "man.h" #include "libmandoc.h" #include "roff_int.h" #include "libman.h" +#include "tag.h" #define CHKARGS struct roff_man *man, struct roff_node *n |