summaryrefslogtreecommitdiffstats
path: root/tools/tcltk-man2html-utils.tcl
diff options
context:
space:
mode:
authordkf <donal.k.fellows@manchester.ac.uk>2013-10-28 09:23:30 (GMT)
committerdkf <donal.k.fellows@manchester.ac.uk>2013-10-28 09:23:30 (GMT)
commitb5a083c5f4045282110fc37a71cd4d5f5d12bdc5 (patch)
tree6986da77d87e610d1d5786b4687a77bd84925bf6 /tools/tcltk-man2html-utils.tcl
parentfee9da8b415b97c7a4955ce8d32fe7067abf0f18 (diff)
downloadtcl-b5a083c5f4045282110fc37a71cd4d5f5d12bdc5.zip
tcl-b5a083c5f4045282110fc37a71cd4d5f5d12bdc5.tar.gz
tcl-b5a083c5f4045282110fc37a71cd4d5f5d12bdc5.tar.bz2
[01b77111e5]: Small fixes relating to this bug. In particular, the package name
mapping was not being distributed, and there were some small problems with what the mappings were and how they were applied. Also prevented external URLs from ending with a '.'; that's vanishingly rare...
Diffstat (limited to 'tools/tcltk-man2html-utils.tcl')
-rw-r--r--tools/tcltk-man2html-utils.tcl2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/tcltk-man2html-utils.tcl b/tools/tcltk-man2html-utils.tcl
index d02bcb6..bdd0079 100644
--- a/tools/tcltk-man2html-utils.tcl
+++ b/tools/tcltk-man2html-utils.tcl
@@ -900,7 +900,7 @@ proc insert-cross-references {text} {
append result [string range $text 0 [expr {$off-1}]]
regexp -indices -start $off {http://[\w/.]+} $text range
set url [string range $text {*}$range]
- append result "<A HREF=\"$url\">" $url "</A>"
+ append result "<A HREF=\"[string trimright $url .]\">$url</A>"
set text [string range $text[set text ""] \
[expr {[lindex $range 1]+1}] end]
continue