diff options
author | das <das@noemail.net> | 2004-03-17 18:15:27 (GMT) |
---|---|---|
committer | das <das@noemail.net> | 2004-03-17 18:15:27 (GMT) |
commit | 66ee68da5a4a12aa0ceb30c6a7c96d6f86ca4e2c (patch) | |
tree | a4d842ff3e2a8fc34e8fd25e2322f00537fdfae9 /library/entry.tcl | |
parent | 12819e574ba8306071f121cee54c2685d6d157bc (diff) | |
download | tk-66ee68da5a4a12aa0ceb30c6a7c96d6f86ca4e2c.zip tk-66ee68da5a4a12aa0ceb30c6a7c96d6f86ca4e2c.tar.gz tk-66ee68da5a4a12aa0ceb30c6a7c96d6f86ca4e2c.tar.bz2 |
Removed support for Mac OS Classic platform [Patch 918139]
FossilOrigin-Name: 28ec831e756a8fba6e184ce2667ee594c4901904
Diffstat (limited to 'library/entry.tcl')
-rw-r--r-- | library/entry.tcl | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/library/entry.tcl b/library/entry.tcl index 8828909..2718145 100644 --- a/library/entry.tcl +++ b/library/entry.tcl @@ -3,7 +3,7 @@ # This file defines the default bindings for Tk entry widgets and provides # procedures that help in implementing those bindings. # -# RCS: @(#) $Id: entry.tcl,v 1.21 2003/01/23 23:30:11 drh Exp $ +# RCS: @(#) $Id: entry.tcl,v 1.22 2004/03/17 18:15:44 das Exp $ # # Copyright (c) 1992-1994 The Regents of the University of California. # Copyright (c) 1994-1997 Sun Microsystems, Inc. @@ -204,8 +204,7 @@ bind Entry <Escape> {# nothing} bind Entry <Return> {# nothing} bind Entry <KP_Enter> {# nothing} bind Entry <Tab> {# nothing} -if {[string equal [tk windowingsystem] "classic"] - || [string equal [tk windowingsystem] "aqua"]} { +if {[string equal [tk windowingsystem] "aqua"]} { bind Entry <Command-KeyPress> {# nothing} } |