diff options
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/emulation/edt.el | 4 |
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 |