aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1997-04-30 02:13:02 +0000
committerRichard M. Stallman1997-04-30 02:13:02 +0000
commit39445e62161bcaf9b905eda1e9fd325c8d1d7ee1 (patch)
tree2e30bdc282fa4164a2fba5db9b8665c4c3176a02
parent622b7ede1cb1fc2174e8c63c283296f71bfb30e8 (diff)
downloademacs-39445e62161bcaf9b905eda1e9fd325c8d1d7ee1.tar.gz
emacs-39445e62161bcaf9b905eda1e9fd325c8d1d7ee1.zip
(edt-emulation-on): Load edt-pc.el under Windows.
-rw-r--r--lisp/emulation/edt.el4
1 files 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
1482(defun edt-emulation-on () 1482(defun edt-emulation-on ()
1483 "Turn on EDT Emulation." 1483 "Turn on EDT Emulation."
1484 (interactive) 1484 (interactive)
1485 ;; If using MS-DOS, need to load edt-pc.el 1485 ;; If using MS-DOS or Windows, need to load edt-pc.el
1486 (if (eq system-type 'ms-dos) 1486 (if (memq system-type '(ms-dos windows-nt))
1487 (setq edt-term "pc") 1487 (setq edt-term "pc")
1488 (setq edt-term (getenv "TERM"))) 1488 (setq edt-term (getenv "TERM")))
1489 ;; All DEC VT series terminals are supported by loading edt-vt100.el 1489 ;; All DEC VT series terminals are supported by loading edt-vt100.el