From 39445e62161bcaf9b905eda1e9fd325c8d1d7ee1 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Wed, 30 Apr 1997 02:13:02 +0000 Subject: [PATCH] (edt-emulation-on): Load edt-pc.el under Windows. --- lisp/emulation/edt.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lisp/emulation/edt.el b/lisp/emulation/edt.el index 6ec3dbc3f1e..18deb138d96 100644 --- a/lisp/emulation/edt.el +++ b/lisp/emulation/edt.el @@ -1482,8 +1482,8 @@ If FILE is nil, try to load a default file. The default file names are (defun edt-emulation-on () "Turn on EDT Emulation." (interactive) - ;; If using MS-DOS, need to load edt-pc.el - (if (eq system-type 'ms-dos) + ;; If using MS-DOS or Windows, need to load edt-pc.el + (if (memq system-type '(ms-dos windows-nt)) (setq edt-term "pc") (setq edt-term (getenv "TERM"))) ;; All DEC VT series terminals are supported by loading edt-vt100.el -- 2.39.5