diff options
| author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2016-11-04 11:53:00 (GMT) |
|---|---|---|
| committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2016-11-04 11:53:00 (GMT) |
| commit | 20880c7ce92887ea90db65b6a4ff2c521638003d (patch) | |
| tree | fa4b8b85d46cc0a3bd05ba98ec9cce34fc047b25 | |
| parent | 55c589e2de974babb918fedf1c77e6d454a82ad6 (diff) | |
| parent | 0a7d5ef6ed81cb3248dc35955bcf659e53b7f0dc (diff) | |
| download | tcl-20880c7ce92887ea90db65b6a4ff2c521638003d.zip tcl-20880c7ce92887ea90db65b6a4ff2c521638003d.tar.gz tcl-20880c7ce92887ea90db65b6a4ff2c521638003d.tar.bz2 | |
merge trunk
| -rw-r--r-- | tools/tcltk-man2html-utils.tcl | 5 |
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 |
