diff options
author | hobbs <hobbs> | 2000-08-07 21:31:47 (GMT) |
---|---|---|
committer | hobbs <hobbs> | 2000-08-07 21:31:47 (GMT) |
commit | 229bd49ed931b26f57e629263fd44bf2c616de9e (patch) | |
tree | a60a3bcb76d669e4ec481a417411b7437971a7ee | |
parent | 7779704e5e301df396ffb26b444de9ed4a1d2845 (diff) | |
download | tcl-229bd49ed931b26f57e629263fd44bf2c616de9e.zip tcl-229bd49ed931b26f57e629263fd44bf2c616de9e.tar.gz tcl-229bd49ed931b26f57e629263fd44bf2c616de9e.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].
-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..5b18f2b 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.3.18.1 2000/08/07 21:31:47 hobbs 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; } |