summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2016-11-04 11:50:22 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2016-11-04 11:50:22 (GMT)
commitb48d11bb4ce7931c2ee17f9a51be8c232d306f10 (patch)
treea8f959a9e360dd211345ba9fc2c50ca8b30f9c48
parent0f21498784cb704ce6098fcc71b786e422fb2b8d (diff)
parentb9a27c7e1b9c334d15b042404b291c62708bf44a (diff)
downloadtcl-b48d11bb4ce7931c2ee17f9a51be8c232d306f10.zip
tcl-b48d11bb4ce7931c2ee17f9a51be8c232d306f10.tar.gz
tcl-b48d11bb4ce7931c2ee17f9a51be8c232d306f10.tar.bz2
Fix the generated copyright sections in the HTML help file.
-rw-r--r--tools/tcltk-man2html-utils.tcl5
1 files changed, 5 insertions, 0 deletions
diff --git a/tools/tcltk-man2html-utils.tcl b/tools/tcltk-man2html-utils.tcl
index 8fd1245..9052049 100644
--- a/tools/tcltk-man2html-utils.tcl
+++ b/tools/tcltk-man2html-utils.tcl
@@ -57,9 +57,14 @@ proc copyright {copyright {level {}}} {
}
proc copyout {copyrights {level {}}} {
+ set count 0
set out "<div class=\"copy\">"
foreach c $copyrights {
+ if {$count > 0} {
+ append out <BR>
+ }
append out "[copyright $c $level]\n"
+ incr count
}
append out "</div>"
return $out