diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2009-04-11 12:49:49 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2009-04-11 12:49:49 (GMT) |
commit | 87d9a5b6097c69d7287bbc765d140c3a3f081170 (patch) | |
tree | e7eca21df6c454da49ba60efb7853cf5d6e7743f /library/tk.tcl | |
parent | 1dfca47316450713ddcc2058ee9387a692f42bc6 (diff) | |
download | tk-87d9a5b6097c69d7287bbc765d140c3a3f081170.zip tk-87d9a5b6097c69d7287bbc765d140c3a3f081170.tar.gz tk-87d9a5b6097c69d7287bbc765d140c3a3f081170.tar.bz2 |
Oops!
Diffstat (limited to 'library/tk.tcl')
-rw-r--r-- | library/tk.tcl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/library/tk.tcl b/library/tk.tcl index 3a31128..ac813d1 100644 --- a/library/tk.tcl +++ b/library/tk.tcl @@ -3,7 +3,7 @@ # Initialization script normally executed in the interpreter for each # Tk-based application. Arranges class bindings for widgets. # -# RCS: @(#) $Id: tk.tcl,v 1.84 2009/04/10 10:16:24 dkf Exp $ +# RCS: @(#) $Id: tk.tcl,v 1.85 2009/04/11 12:49:49 dkf Exp $ # # Copyright (c) 1992-1994 The Regents of the University of California. # Copyright (c) 1994-1996 Sun Microsystems, Inc. @@ -369,7 +369,7 @@ switch -exact -- [tk windowingsystem] { event add <<Undo>> <Control-Key-z> <Control-Lock-Key-Z> event add <<Redo>> <Control-Key-Z> <Control-Lock-Key-z> event add <<ContextMenu>> <Button-3> - if {$tk_platform(os) eq "Darwin"} { + if {$tcl_platform(os) eq "Darwin"} { event add <<ContextMenu>> <Button-2> } |