diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2016-11-04 11:51:22 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2016-11-04 11:51:22 (GMT) |
commit | 0a7d5ef6ed81cb3248dc35955bcf659e53b7f0dc (patch) | |
tree | 19e3b032fa4e4bbbf56171938193326bb3394fe8 /tools | |
parent | 274f081025d8d5f249ccc44025944919f4190933 (diff) | |
parent | f785a01764fc2e0c97dcb5feac7f584deb164bed (diff) | |
download | tcl-0a7d5ef6ed81cb3248dc35955bcf659e53b7f0dc.zip tcl-0a7d5ef6ed81cb3248dc35955bcf659e53b7f0dc.tar.gz tcl-0a7d5ef6ed81cb3248dc35955bcf659e53b7f0dc.tar.bz2 |
Fix the generated copyright sections in the HTML help file
Diffstat (limited to 'tools')
-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 |