diff options
author | 2018-04-24 00:36:04 +0000 | |
---|---|---|
committer | 2018-04-24 00:36:04 +0000 | |
commit | 687b5bcb0dd5205421050750349fcc4a68fd0d49 (patch) | |
tree | 80aee104fbe2876bddec80342bd537cae1c5f66e /usr.bin/mandoc/man_html.c | |
parent | Move efi_cleanup() to before the mem_pass() since efi_cleanup() might (diff) | |
download | wireguard-openbsd-687b5bcb0dd5205421050750349fcc4a68fd0d49.tar.xz wireguard-openbsd-687b5bcb0dd5205421050750349fcc4a68fd0d49.zip |
replace my vague and idiosyncratic term "selflink"
with the clearer and more usual "permalink";
suggested by John Gardner <gardnerjohng at gmail dot com>
Diffstat (limited to 'usr.bin/mandoc/man_html.c')
-rw-r--r-- | usr.bin/mandoc/man_html.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/mandoc/man_html.c b/usr.bin/mandoc/man_html.c index 4cf1d4235e5..11673267932 100644 --- a/usr.bin/mandoc/man_html.c +++ b/usr.bin/mandoc/man_html.c @@ -1,4 +1,4 @@ -/* $OpenBSD: man_html.c,v 1.100 2018/04/13 16:27:14 schwarze Exp $ */ +/* $OpenBSD: man_html.c,v 1.101 2018/04/24 00:36:04 schwarze Exp $ */ /* * Copyright (c) 2008-2012, 2014 Kristaps Dzonsons <kristaps@bsd.lv> * Copyright (c) 2013,2014,2015,2017,2018 Ingo Schwarze <schwarze@openbsd.org> @@ -429,7 +429,7 @@ man_SH_pre(MAN_ARGS) id = html_make_id(n); print_otag(h, TAG_H1, "cTi", "Sh", id); if (id != NULL) - print_otag(h, TAG_A, "chR", "selflink", id); + print_otag(h, TAG_A, "chR", "permalink", id); free(id); } return 1; @@ -499,7 +499,7 @@ man_SS_pre(MAN_ARGS) id = html_make_id(n); print_otag(h, TAG_H2, "cTi", "Ss", id); if (id != NULL) - print_otag(h, TAG_A, "chR", "selflink", id); + print_otag(h, TAG_A, "chR", "permalink", id); free(id); } return 1; |