diff options
author | ericm <ericm> | 2000-05-15 21:48:44 (GMT) |
---|---|---|
committer | ericm <ericm> | 2000-05-15 21:48:44 (GMT) |
commit | 9be3e766082bd89b18ca17b939bbfe66a62f72bc (patch) | |
tree | e11ee3e0d14d20325b55725624bc4d598f30b18a /library/history.tcl | |
parent | 382ef81951b32e3d339ec13fd4a56e61aa47ffc2 (diff) | |
download | tcl-9be3e766082bd89b18ca17b939bbfe66a62f72bc.zip tcl-9be3e766082bd89b18ca17b939bbfe66a62f72bc.tar.gz tcl-9be3e766082bd89b18ca17b939bbfe66a62f72bc.tar.bz2 |
* library/history.tcl: Corrected an off-by-one error in HistIndex,
which was causing [history redo] to start its search at the wrong
event index. [Bug: 1269].
Diffstat (limited to 'library/history.tcl')
-rw-r--r-- | library/history.tcl | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/library/history.tcl b/library/history.tcl index a3bfb85..b93a083 100644 --- a/library/history.tcl +++ b/library/history.tcl @@ -2,7 +2,7 @@ # # Implementation of the history command. # -# RCS: @(#) $Id: history.tcl,v 1.3 1998/09/14 18:40:03 stanton Exp $ +# RCS: @(#) $Id: history.tcl,v 1.4 2000/05/15 21:48:44 ericm Exp $ # # Copyright (c) 1997 Sun Microsystems, Inc. # @@ -305,7 +305,8 @@ proc history {args} { proc tcl::HistIndex {event} { variable history if {[catch {expr {~$event}}]} { - for {set i $history(nextid)} {[info exists history($i)]} {incr i -1} { + for {set i [expr {$history(nextid)-1}]} {[info exists history($i)]} \ + {incr i -1} { if {[string match $event* $history($i)]} { return $i; } |