|
|
|
|
@ -7941,7 +7941,13 @@ namespace eval punk {
|
|
|
|
|
set t [textblock::class::table new -show_hseps 0 -show_header 1 -ansiborder_header [a+ web-green]] |
|
|
|
|
foreach {v vinfo} $otherenv_config { |
|
|
|
|
if {[info exists ::env($v)]} { |
|
|
|
|
set c2 [set ::env($v)] |
|
|
|
|
set env_val [set ::env($v)] |
|
|
|
|
if {[string match "*_TM_PATH" $v]} { |
|
|
|
|
set entries [split $env_val $::tcl_platform(pathSeparator)] |
|
|
|
|
set c2 [join $entries \n] |
|
|
|
|
} else { |
|
|
|
|
set c2 $::env($v) |
|
|
|
|
} |
|
|
|
|
} else { |
|
|
|
|
set c2 "(NOT SET)" |
|
|
|
|
} |
|
|
|
|
@ -7952,7 +7958,8 @@ namespace eval punk {
|
|
|
|
|
|
|
|
|
|
set othertable [$t print] |
|
|
|
|
$t destroy |
|
|
|
|
append text [textblock::join -- $punktable " " $othertable]\n |
|
|
|
|
#append text [textblock::join -- $punktable " " $othertable]\n |
|
|
|
|
append text $punktable\n$othertable\n |
|
|
|
|
} else { |
|
|
|
|
|
|
|
|
|
append text $linesep\n |
|
|
|
|
|