aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorRichard M. Stallman1995-06-27 22:59:00 +0000
committerRichard M. Stallman1995-06-27 22:59:00 +0000
commitf873df690c175cbe1d5d56948e3db2d410810753 (patch)
tree23cdd722e6900873e97aafc8499c0305002a8d8d /lisp
parentfe8fa72dad8b4c45734b26b1ebab7f9c74ac4f40 (diff)
downloademacs-f873df690c175cbe1d5d56948e3db2d410810753.tar.gz
emacs-f873df690c175cbe1d5d56948e3db2d410810753.zip
(edt-emulation-on): Check window-system for x, specifically.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/emulation/edt.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emulation/edt.el b/lisp/emulation/edt.el
index c482506739f..83e8b26fc4e 100644
--- a/lisp/emulation/edt.el
+++ b/lisp/emulation/edt.el
@@ -1499,7 +1499,7 @@ If FILE is nil, try to load a default file. The default file names are
1499 (setq term nil))) 1499 (setq term nil)))
1500 ;; Override terminal-specific file if running X Windows. X Windows support 1500 ;; Override terminal-specific file if running X Windows. X Windows support
1501 ;; is handled differently in edt-load-xkeys 1501 ;; is handled differently in edt-load-xkeys
1502 (if window-system 1502 (if (eq window-system 'x)
1503 (edt-load-xkeys nil) 1503 (edt-load-xkeys nil)
1504 (if (null term) 1504 (if (null term)
1505 (error "Unable to load EDT terminal specific file for %s" edt-term))) 1505 (error "Unable to load EDT terminal specific file for %s" edt-term)))