changeset 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 b016f6f9056c
children 87e5ef6613ed
files lisp/startup.el
diffstat 1 files changed, 4 insertions(+), 2 deletions(-) [+]
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)")))