diff options
author | hobbs <hobbs> | 2001-05-28 22:27:08 (GMT) |
---|---|---|
committer | hobbs <hobbs> | 2001-05-28 22:27:08 (GMT) |
commit | 503b451e0048967ab2aa797c2dbc084427ebe525 (patch) | |
tree | 03fbe77da79b5b8280960b0832a3c60184e13bf4 /library | |
parent | 88dc71c014335a5e856005fc4a693d96e1e00319 (diff) | |
download | tcl-503b451e0048967ab2aa797c2dbc084427ebe525.zip tcl-503b451e0048967ab2aa797c2dbc084427ebe525.tar.gz tcl-503b451e0048967ab2aa797c2dbc084427ebe525.tar.bz2 |
removed errant " char
Diffstat (limited to 'library')
-rw-r--r-- | library/init.tcl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/library/init.tcl b/library/init.tcl index c739c29..4de3ceb 100644 --- a/library/init.tcl +++ b/library/init.tcl @@ -3,7 +3,7 @@ # Default system startup file for Tcl-based applications. Defines # "unknown" procedure and auto-load facilities. # -# RCS: @(#) $Id: init.tcl,v 1.47 2001/05/03 22:38:20 dgp Exp $ +# RCS: @(#) $Id: init.tcl,v 1.48 2001/05/28 22:27:08 hobbs Exp $ # # Copyright (c) 1991-1993 The Regents of the University of California. # Copyright (c) 1994-1996 Sun Microsystems, Inc. @@ -241,7 +241,7 @@ proc unknown args { # if {$errorInfo ne "$einfo$expect"} { error "Tcl bug: unexpected stack trace in \"unknown\"" {} \ - [list CORE UNKNOWN BADTRACE $expect $errorInfo"] + [list CORE UNKNOWN BADTRACE $expect $errorInfo] } return -code error -errorcode $errorCode \ -errorinfo $einfo $msg |