1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
|
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
|
-
+
|
if {$milliseconds > 0} then {
set afterForPageProgress [after $milliseconds \
[namespace code [list pageProgress $channel $type \
$milliseconds]]]
} else {
unset afterForPageProgress
unset -nocomplain afterForPageProgress
}
}
#
# NOTE: This procedure was stolen from the "getEagle.tcl" script. It is
|
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
|
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
|
+
|
#
# NOTE: If there is a currently scheduled [after] event, cancel it.
#
if {[info exists afterForPageProgress]} then {
catch {after cancel $afterForPageProgress}
unset -nocomplain afterForPageProgress
}
#
# NOTE: If progress messages were emitted, start a fresh line.
#
|