]> code.delx.au - gnu-emacs/commitdiff
Delete code to disable f10 if motif.
authorRichard M. Stallman <rms@gnu.org>
Thu, 1 Aug 1996 22:25:11 +0000 (22:25 +0000)
committerRichard M. Stallman <rms@gnu.org>
Thu, 1 Aug 1996 22:25:11 +0000 (22:25 +0000)
lisp/term/x-win.el

index 08819f28df68ded76db439ba08ba9d5796d2762b..1d927d71a18428a28a3602f25a3d13a70bfda103 100644 (file)
@@ -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