summaryrefslogtreecommitdiffstats
path: root/library/menu.tcl
diff options
context:
space:
mode:
authorredman <redman>1999-07-22 16:31:48 (GMT)
committerredman <redman>1999-07-22 16:31:48 (GMT)
commitfb91bc16ea5815f68a31637a88c265fc3efe74eb (patch)
treef8938cae80b1316e334329f0ecbdcf3a43ee7f38 /library/menu.tcl
parent4db5947bf5b968cca2974ac31288c6ceb6e83e7a (diff)
downloadtk-fb91bc16ea5815f68a31637a88c265fc3efe74eb.zip
tk-fb91bc16ea5815f68a31637a88c265fc3efe74eb.tar.gz
tk-fb91bc16ea5815f68a31637a88c265fc3efe74eb.tar.bz2
Applied patch from Jeff Hobbs to fix typo in menu.tcl [Bug: 2425]
Diffstat (limited to 'library/menu.tcl')
-rw-r--r--library/menu.tcl4
1 files changed, 2 insertions, 2 deletions
diff --git a/library/menu.tcl b/library/menu.tcl
index 177de2b..6c4e153 100644
--- a/library/menu.tcl
+++ b/library/menu.tcl
@@ -4,7 +4,7 @@
# It also implements keyboard traversal of menus and implements a few
# other utility procedures related to menus.
#
-# RCS: @(#) $Id: menu.tcl,v 1.6 1999/05/07 20:05:40 stanton Exp $
+# RCS: @(#) $Id: menu.tcl,v 1.7 1999/07/22 16:31:48 redman Exp $
#
# Copyright (c) 1992-1994 The Regents of the University of California.
# Copyright (c) 1994-1997 Sun Microsystems, Inc.
@@ -934,7 +934,7 @@ proc tkMenuFind {w char} {
[$child cget -underline]]
if {![string compare $char [string tolower $char2]]
|| ![string compare $char ""]} {
- if {[string compare [$child cget $i -state] "disabled"]} {
+ if {[string compare [$child cget -state] "disabled"]} {
return $child
}
}