summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1996-08-01 22:25:11 +0000
committerRichard M. Stallman <rms@gnu.org>1996-08-01 22:25:11 +0000
commit740e13b3ffaa64607bbcd54571e4866167dbbb8a (patch)
treecc6b25fe0f4da299f8f12983e5107e7d8f3a49b0
parent7ca7485a8a1b03fb8775f1e7c9817823fa24d184 (diff)
downloademacs-740e13b3ffaa64607bbcd54571e4866167dbbb8a.tar.gz
Delete code to disable f10 if motif.
-rw-r--r--lisp/term/x-win.el9
1 files changed, 6 insertions, 3 deletions
diff --git a/lisp/term/x-win.el b/lisp/term/x-win.el
index 08819f28df6..1d927d71a18 100644
--- a/lisp/term/x-win.el
+++ b/lisp/term/x-win.el
@@ -700,8 +700,11 @@ This is in addition to the primary selection.")
;; Don't show the frame name; that's redundant with X.
(setq-default mode-line-buffer-identification '("Emacs: %12b"))
-;; Motif normally handles f10 itself, so don't try to handle it a second time.
-(if (featurep 'motif)
- (global-set-key [f10] 'ignore))
+;;; Motif direct handling of f10 wasn't working right,
+;;; So temporarily we've turned it off in lwlib-Xm.c
+;;; and turned the Emacs f10 back on.
+;;; ;; Motif normally handles f10 itself, so don't try to handle it a second time.
+;;; (if (featurep 'motif)
+;;; (global-set-key [f10] 'ignore))
;;; x-win.el ends here