summaryrefslogtreecommitdiff
path: root/lisp/startup.el
diff options
context:
space:
mode:
authorGlenn Morris <rgm@gnu.org>2009-08-22 21:59:40 +0000
committerGlenn Morris <rgm@gnu.org>2009-08-22 21:59:40 +0000
commita337468045409bc0d9179f4cdda010dbab2a5989 (patch)
treece85d6ca33e474a2c4acb3e14160c8ff9a9bb9e3 /lisp/startup.el
parent3f12e3f4bf054763b6507577e72a55a02302ace7 (diff)
downloademacs-a337468045409bc0d9179f4cdda010dbab2a5989.tar.gz
Remove code for defunct system-types emx, macos, mswindows,
unisoft-unix, vax-vms, win32, w32.
Diffstat (limited to 'lisp/startup.el')
-rw-r--r--lisp/startup.el6
1 files changed, 1 insertions, 5 deletions
diff --git a/lisp/startup.el b/lisp/startup.el
index 3d177f9d944..cc2165bcfb4 100644
--- a/lisp/startup.el
+++ b/lisp/startup.el
@@ -741,13 +741,9 @@ opening the first frame (e.g. open a connection to an X server).")
;; Set the default strings to display in mode line for
;; end-of-line formats that aren't native to this platform.
(cond
- ((memq system-type '(ms-dos windows-nt emx))
+ ((memq system-type '(ms-dos windows-nt))
(setq eol-mnemonic-unix "(Unix)"
eol-mnemonic-mac "(Mac)"))
- ;; Both Mac and Unix EOLs are now "native" on Mac OS so keep the
- ;; abbreviated strings `/' and `:' set in coding.c for them.
- ((eq system-type 'macos)
- (setq eol-mnemonic-dos "(DOS)"))
(t ; this is for Unix/GNU/Linux systems
(setq eol-mnemonic-dos "(DOS)"
eol-mnemonic-mac "(Mac)")))