diff options
author | fvogel <fvogelnew1@free.fr> | 2015-11-08 22:06:11 (GMT) |
---|---|---|
committer | fvogel <fvogelnew1@free.fr> | 2015-11-08 22:06:11 (GMT) |
commit | a3cbc8450cd46d22821a752b8d135ba65c6d53e2 (patch) | |
tree | 10dd35b6e6ad186671a088f3122718092ab4dbab | |
parent | cecdbbe2d4185ad06cbb98b87032933eced4a32d (diff) | |
parent | a9fef7578ba2c2750fbe5b8bccd108dc322351f6 (diff) | |
download | tk-a3cbc8450cd46d22821a752b8d135ba65c6d53e2.zip tk-a3cbc8450cd46d22821a752b8d135ba65c6d53e2.tar.gz tk-a3cbc8450cd46d22821a752b8d135ba65c6d53e2.tar.bz2 |
Fixed bug [297442da29] - tk_strictMotif not correctly taken into account
-rw-r--r-- | doc/text.n | 5 | ||||
-rw-r--r-- | library/tk.tcl | 1 |
2 files changed, 2 insertions, 4 deletions
@@ -2222,9 +2222,8 @@ after copying it to the clipboard. Control-t reverses the order of the two characters to the right of the insertion cursor. .IP [32] -Control-z (and Control-underscore on UNIX when \fBtk_strictMotif\fR is -true) undoes the last edit action if the \fB\-undo\fR option is true. -Does nothing otherwise. +Control-z (undoes the last edit action if the \fB\-undo\fR option is +true. Does nothing otherwise. .IP [33] Control-Z (or Control-y on Windows) reapplies the last undone edit action if the \fB\-undo\fR option is true. Does nothing otherwise. diff --git a/library/tk.tcl b/library/tk.tcl index a9db8cb..d045222 100644 --- a/library/tk.tcl +++ b/library/tk.tcl @@ -308,7 +308,6 @@ proc ::tk::EventMotifBindings {n1 dummy dummy} { event $op <<Cut>> <Control-Key-w> event $op <<Copy>> <Meta-Key-w> event $op <<Paste>> <Control-Key-y> - event $op <<Undo>> <Control-underscore> } #---------------------------------------------------------------------- |