diff options
author | Richard M. Stallman <rms@gnu.org> | 1995-06-27 22:59:00 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1995-06-27 22:59:00 +0000 |
commit | f873df690c175cbe1d5d56948e3db2d410810753 (patch) | |
tree | 23cdd722e6900873e97aafc8499c0305002a8d8d /lisp/emulation | |
parent | fe8fa72dad8b4c45734b26b1ebab7f9c74ac4f40 (diff) | |
download | emacs-f873df690c175cbe1d5d56948e3db2d410810753.tar.gz |
(edt-emulation-on): Check window-system for x, specifically.
Diffstat (limited to 'lisp/emulation')
-rw-r--r-- | lisp/emulation/edt.el | 2 |
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 (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))) |