aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/emulation/edt.el
diff options
context:
space:
mode:
authorRichard M. Stallman <[email protected]>1995-06-27 22:59:00 +0000
committerRichard M. Stallman <[email protected]>1995-06-27 22:59:00 +0000
commitf873df690c175cbe1d5d56948e3db2d410810753 (patch)
tree23cdd722e6900873e97aafc8499c0305002a8d8d /lisp/emulation/edt.el
parentfe8fa72dad8b4c45734b26b1ebab7f9c74ac4f40 (diff)
(edt-emulation-on): Check window-system for x, specifically.
Diffstat (limited to 'lisp/emulation/edt.el')
-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 c482506739..83e8b26fc4 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
(setq term nil)))
;; Override terminal-specific file if running X Windows. X Windows support
;; is handled differently in edt-load-xkeys
- (if window-system
+ (if (eq window-system 'x)
(edt-load-xkeys nil)
(if (null term)
(error "Unable to load EDT terminal specific file for %s" edt-term)))