summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2016-11-04 11:53:00 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2016-11-04 11:53:00 (GMT)
commit20880c7ce92887ea90db65b6a4ff2c521638003d (patch)
treefa4b8b85d46cc0a3bd05ba98ec9cce34fc047b25
parent55c589e2de974babb918fedf1c77e6d454a82ad6 (diff)
parent0a7d5ef6ed81cb3248dc35955bcf659e53b7f0dc (diff)
downloadtcl-20880c7ce92887ea90db65b6a4ff2c521638003d.zip
tcl-20880c7ce92887ea90db65b6a4ff2c521638003d.tar.gz
tcl-20880c7ce92887ea90db65b6a4ff2c521638003d.tar.bz2
merge trunk
-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