summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2020-11-30 14:20:34 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2020-11-30 14:20:34 (GMT)
commit628a89a2ca3a0e1754bdcd721914ba764d96cff6 (patch)
tree686727a484508928056dde3280f7e31dfc578cff /tools
parent6c96a3415a8c9b1b0df5866d19d1a6ed1e6db1d4 (diff)
parent17b8d11c630ceef93b8ba535cc6964a7cfc495e9 (diff)
downloadtcl-628a89a2ca3a0e1754bdcd721914ba764d96cff6.zip
tcl-628a89a2ca3a0e1754bdcd721914ba764d96cff6.tar.gz
tcl-628a89a2ca3a0e1754bdcd721914ba764d96cff6.tar.bz2
Merge 8.6
Diffstat (limited to 'tools')
-rw-r--r--tools/tcltk-man2html-utils.tcl6
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/tcltk-man2html-utils.tcl b/tools/tcltk-man2html-utils.tcl
index 68d380a..94440d5 100644
--- a/tools/tcltk-man2html-utils.tcl
+++ b/tools/tcltk-man2html-utils.tcl
@@ -199,7 +199,7 @@ proc process-text {text} {
{\(eu} "&euro;" \
{\fP} {\fR} \
{\.} . \
- {\(bu} "&#8226;" \
+ {\(bu} "&bull;" \
{\*(qo} "&ocirc;" \
]
# This might make a few invalid mappings, but we don't use them
@@ -573,7 +573,7 @@ proc output-IP-list {context code rest} {
if {[regexp {^\[[\da-f]+\]|\(?[\da-f]+\)$} $rest]} {
set dl "<ol class=\"[string tolower $manual(section)]\">"
set enddl "</ol>"
- } elseif {"&#8226;" eq $rest} {
+ } elseif {"&bull;" eq $rest} {
set dl "<ul class=\"[string tolower $manual(section)]\">"
set enddl "</ul>"
}
@@ -599,7 +599,7 @@ proc output-IP-list {context code rest} {
man-puts "$para<li value=\"$value\">"
} elseif {[regexp {^\(?([\da-f]+)\)$} $rest -> value]} {
man-puts "$para<li value=\"$value\">"
- } elseif {"&#8226;" eq $rest} {
+ } elseif {"&bull;" eq $rest} {
man-puts "$para<li>"
} else {
man-puts "$para<dt>[long-toc $rest]<dd>"