summaryrefslogtreecommitdiffstats
path: root/library
diff options
context:
space:
mode:
authordkf <dkf@noemail.net>2008-12-16 22:03:25 (GMT)
committerdkf <dkf@noemail.net>2008-12-16 22:03:25 (GMT)
commit6e8b71a721f799ecfe0fbff31580283f13793c4d (patch)
tree0874452c988f22d4e07fc40f1ad9344b7c1930f8 /library
parentb623e98092d8fe78b4ba347ba0a9bb8d89f5636d (diff)
downloadtcl-6e8b71a721f799ecfe0fbff31580283f13793c4d.zip
tcl-6e8b71a721f799ecfe0fbff31580283f13793c4d.tar.gz
tcl-6e8b71a721f799ecfe0fbff31580283f13793c4d.tar.bz2
Fix bug in 'trap' handlers (introduced by DKF's editing originally)
FossilOrigin-Name: 4f5029e8f9789ff862e5db6248cc2bc669a21eb2
Diffstat (limited to 'library')
-rw-r--r--library/init.tcl4
1 files changed, 2 insertions, 2 deletions
diff --git a/library/init.tcl b/library/init.tcl
index dfb1777..71635fb 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.116 2008/12/16 16:36:08 dkf Exp $
+# RCS: @(#) $Id: init.tcl,v 1.117 2008/12/16 22:03:25 dkf Exp $
#
# Copyright (c) 1991-1993 The Regents of the University of California.
# Copyright (c) 1994-1996 Sun Microsystems, Inc.
@@ -179,7 +179,7 @@ namespace eval ::tcl::control {
must be a list"
}
lappend handlers [lrange $args $i $i] 1 \
- {*}[lrange $args $i+1 $i+2]
+ {*}[lrange $args $i $i+2]
incr i 3
}
"finally" {