aboutsummaryrefslogtreecommitdiff
path: root/tclcompat.tcl
diff options
context:
space:
mode:
authorSteve Bennett <steveb@workware.net.au>2010-10-11 10:30:22 +1000
committerSteve Bennett <steveb@workware.net.au>2010-10-15 11:02:57 +1000
commit7f0bcc46a3c9fcfa42f01898330858181838e41f (patch)
tree00eaaf240f252c57846b8812ea0c483bee10deca /tclcompat.tcl
parent3cfb6f5e312305d7641340917a251606efdf4611 (diff)
downloadjimtcl-7f0bcc46a3c9fcfa42f01898330858181838e41f.zip
jimtcl-7f0bcc46a3c9fcfa42f01898330858181838e41f.tar.gz
jimtcl-7f0bcc46a3c9fcfa42f01898330858181838e41f.tar.bz2
Remove dependence of jim core on stderr
Remove Jim_PrintErrorMessage() and create Jim_MakeErrorMessage() instead. Move errorInfo to stdlib since it is now required. Also move lassign from tclcompat to stdlib as a core command. Signed-off-by: Steve Bennett <steveb@workware.net.au>
Diffstat (limited to 'tclcompat.tcl')
-rw-r--r--tclcompat.tcl22
1 files changed, 0 insertions, 22 deletions
diff --git a/tclcompat.tcl b/tclcompat.tcl
index c632103..398a916 100644
--- a/tclcompat.tcl
+++ b/tclcompat.tcl
@@ -36,14 +36,6 @@ proc read {{-nonewline {}} chan} {
}
-# Tcl 8.5 lassign
-proc lassign {list args} {
- # in case the list is empty...
- lappend list {}
- uplevel 1 [list foreach $args $list break]
- lrange $list [llength $args] end-1
-}
-
# case var ?in? pattern action ?pattern action ...?
proc case {var args} {
# Skip dummy parameter
@@ -109,20 +101,6 @@ proc parray {arrayname {pattern *} {puts puts}} {
}
}
-# Sort of replacement for $::errorInfo
-# Usage: errorInfo error ?stacktrace?
-proc errorInfo {error {stacktrace ""}} {
- if {$stacktrace eq ""} {
- set stacktrace [info stacktrace]
- }
- lassign $stacktrace p f l
- if {$f ne ""} {
- set result "$f:$l "
- }
- append result "Runtime Error: $error\n"
- append result [stackdump $stacktrace]
-}
-
proc {info nameofexecutable} {} {
if {[info exists ::jim_argv0]} {
if {[string first "/" $::jim_argv0] >= 0} {