# HG changeset patch # User Eli Zaretskii # Date 1011210147 0 # Node ID 987fa2a733e008b6cc2b00a2c5a26ce77e018d30 # Parent b016f6f9056cdde3faddd81e1d8c8a02f315ba73 (command-line): Set EOL mnemonics for the Mac. diff -r b016f6f9056c -r 987fa2a733e0 lisp/startup.el --- 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)")))