summaryrefslogtreecommitdiffstats
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
commit1af5f44d9eec0e4f40a3eb9015d2308ad792ce68 (patch)
tree76a3d6ed459948f5ed8134c22cab3cf945a4c413 /man_html.c
parent9ae5efa98d12fee60b8b08cead624275dd828742 (diff)
downloadmandoc-1af5f44d9eec0e4f40a3eb9015d2308ad792ce68.tar.gz
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.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/man_html.c b/man_html.c
index b0cd083f..c23f2a92 100644
--- a/man_html.c
+++ b/man_html.c
@@ -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;