diff lisp/startup.el @ 42790:987fa2a733e0

(command-line): Set EOL mnemonics for the Mac.
author Eli Zaretskii <eliz@gnu.org>
date Wed, 16 Jan 2002 19:42:27 +0000
parents 00370dd7111e
children 9071f84734d8
line wrap: on
line diff
--- a/lisp/startup.el	Wed Jan 16 18:21:14 2002 +0000
+++ b/lisp/startup.el	Wed Jan 16 19:42:27 2002 +0000
@@ -675,8 +675,10 @@
    ((memq system-type '(ms-dos windows-nt emx))
     (setq eol-mnemonic-unix "(Unix)")
     (setq eol-mnemonic-mac  "(Mac)"))
-   ;; Mac-specific settings should come here, once there's a
-   ;; system-type symbol specific to MacOS.
+   ;; 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)")
     (setq eol-mnemonic-mac  "(Mac)")))