aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/man_html.c
diff options
context:
space:
mode:
authorIngo Schwarze <schwarze@openbsd.org>2018-04-24 00:36:52 +0000
committerIngo Schwarze <schwarze@openbsd.org>2018-04-24 00:36:52 +0000
commit6a69699c15f061c592b60c0fce329c88307113b1 (patch)
tree8abbc9a0f61c29065fb7ca95dc111dd4e4424a09 /man_html.c
parent6bba39783f25286f8494b8d213f1e163db47b54a (diff)
downloadmandoc-6a69699c15f061c592b60c0fce329c88307113b1.tar.gz
mandoc-6a69699c15f061c592b60c0fce329c88307113b1.tar.zst
mandoc-6a69699c15f061c592b60c0fce329c88307113b1.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 'man_html.c')
-rw-r--r--man_html.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/man_html.c b/man_html.c
index f7942ddd..6aee4ffe 100644
--- a/man_html.c
+++ b/man_html.c
@@ -1,4 +1,4 @@
-/* $Id: man_html.c,v 1.147 2018/04/13 16:28:07 schwarze Exp $ */
+/* $Id: man_html.c,v 1.148 2018/04/24 00:36:53 schwarze Exp $ */
/*
* Copyright (c) 2008-2012, 2014 Kristaps Dzonsons <kristaps@bsd.lv>
* Copyright (c) 2013,2014,2015,2017,2018 Ingo Schwarze <schwarze@openbsd.org>
@@ -431,7 +431,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;
@@ -501,7 +501,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;