=================================================================== RCS file: /cvs/mandoc/man_html.c,v retrieving revision 1.147 retrieving revision 1.148 diff -u -p -r1.147 -r1.148 --- mandoc/man_html.c 2018/04/13 16:28:07 1.147 +++ mandoc/man_html.c 2018/04/24 00:36:53 1.148 @@ -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 * Copyright (c) 2013,2014,2015,2017,2018 Ingo Schwarze @@ -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;