summaryrefslogtreecommitdiff
path: root/lisp/emulation/edt.el
diff options
context:
space:
mode:
authorKarl Heuer <kwzh@gnu.org>1996-01-09 23:08:24 +0000
committerKarl Heuer <kwzh@gnu.org>1996-01-09 23:08:24 +0000
commitf750c3604ee42e61a4a7b3e00e5340cf63485ecd (patch)
tree1d482129a5ed02b53d2e4d7fbf958f3c9d26266e /lisp/emulation/edt.el
parent3787cf2cdf6376cee790d0977335e026a9589ed1 (diff)
downloademacs-f750c3604ee42e61a4a7b3e00e5340cf63485ecd.tar.gz
(edt-emulation-on): system-type is a symbol.
Diffstat (limited to 'lisp/emulation/edt.el')
-rw-r--r--lisp/emulation/edt.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emulation/edt.el b/lisp/emulation/edt.el
index e4c6ba9ed38..46ab958d17b 100644
--- a/lisp/emulation/edt.el
+++ b/lisp/emulation/edt.el
@@ -1482,7 +1482,7 @@ If FILE is nil, try to load a default file. The default file names are
"Turn on EDT Emulation."
(interactive)
;; If using MS-DOS, need to load edt-pc.el
- (if (string-equal system-type "ms-dos")
+ (if (eq system-type 'ms-dos)
(setq edt-term "pc")
(setq edt-term (getenv "TERM")))
;; All DEC VT series terminals are supported by loading edt-vt100.el