From: Richard M. Stallman Date: Tue, 27 Jun 1995 22:59:00 +0000 (+0000) Subject: (edt-emulation-on): Check window-system for x, specifically. X-Git-Tag: emacs-19.34~3453 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=f873df690c175cbe1d5d56948e3db2d410810753;p=emacs.git (edt-emulation-on): Check window-system for x, specifically. --- 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)))