diff options
author | vincentdarley <vincentdarley> | 2005-05-13 13:46:11 (GMT) |
---|---|---|
committer | vincentdarley <vincentdarley> | 2005-05-13 13:46:11 (GMT) |
commit | ca42fb6e8a854824ce4a721366545f93b4922b7c (patch) | |
tree | e00f296081d0e86a99bafe7962701b541c5dfd7f /library/text.tcl | |
parent | 1691f71e7dab25771a203f98d798028ddabd75bd (diff) | |
download | tk-ca42fb6e8a854824ce4a721366545f93b4922b7c.zip tk-ca42fb6e8a854824ce4a721366545f93b4922b7c.tar.gz tk-ca42fb6e8a854824ce4a721366545f93b4922b7c.tar.bz2 |
fix to two text widget bugs
Diffstat (limited to 'library/text.tcl')
-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 40973e7..a6c1c1f 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.36 2005/04/18 11:34:41 vincentdarley Exp $ +# RCS: @(#) $Id: text.tcl,v 1.37 2005/05/13 13:46:12 vincentdarley Exp $ # # Copyright (c) 1992-1994 The Regents of the University of California. # Copyright (c) 1994-1997 Sun Microsystems, Inc. @@ -909,7 +909,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 } } |