diff options
author | vincentdarley <vincentdarley> | 2005-05-13 13:48:21 (GMT) |
---|---|---|
committer | vincentdarley <vincentdarley> | 2005-05-13 13:48:21 (GMT) |
commit | 00a8d27d5712be73ac8277e02ec7c273c2bce91c (patch) | |
tree | a4d042cc7fa55d0676ab2517ac6ec9d70743a8c0 /library | |
parent | 1294d5942332fe385343eb33150c3757357b371a (diff) | |
download | tk-00a8d27d5712be73ac8277e02ec7c273c2bce91c.zip tk-00a8d27d5712be73ac8277e02ec7c273c2bce91c.tar.gz tk-00a8d27d5712be73ac8277e02ec7c273c2bce91c.tar.bz2 |
backport of text widget bug fix
Diffstat (limited to 'library')
-rw-r--r-- | library/text.tcl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/library/text.tcl b/library/text.tcl index cf40c38..3b2a5ab 100644 --- a/library/text.tcl +++ b/library/text.tcl @@ -3,7 +3,7 @@ # This file defines the default bindings for Tk text widgets and provides # procedures that help in implementing the bindings. # -# RCS: @(#) $Id: text.tcl,v 1.24.2.5 2004/12/06 19:42:11 hobbs Exp $ +# RCS: @(#) $Id: text.tcl,v 1.24.2.6 2005/05/13 13:48:21 vincentdarley Exp $ # # Copyright (c) 1992-1994 The Regents of the University of California. # Copyright (c) 1994-1997 Sun Microsystems, Inc. @@ -888,7 +888,7 @@ proc ::tk::TextPrevPara {w pos} { dummy index]} { set pos [$w index "$pos + [lindex $index 0] chars"] } - if {[$w compare $pos != insert] || [string equal $pos 1.0]} { + if {[$w compare $pos != insert] || [lindex [split $pos .] 0] == 1} { return $pos } } |