diff options
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 92446a5..cb288ab 100644 --- a/library/text.tcl +++ b/library/text.tcl @@ -298,7 +298,7 @@ bind Text <Key> { tk::TextInsert %W %A } -# Ignore all Alt, Meta, Control, and Mod4 keypresses unless explicitly bound. +# Ignore all Alt, Meta, Control, and Fn keypresses unless explicitly bound. # Otherwise, if a widget binding for one of these is defined, the # <Key> class binding will also fire and insert the character, # which is wrong. Ditto for <Escape>. @@ -309,7 +309,7 @@ bind Text <Control-Key> {# nothing} bind Text <Escape> {# nothing} bind Text <KP_Enter> {# nothing} bind Text <Command-Key> {# nothing} -bind Text <Mod4-Key> {# nothing} +bind Text <Fn-Key> {# nothing} # Additional emacs-like bindings: |