diff lisp/code-init.el @ 5940:c608d4b0b75e cygwin64 tip

rescue lost branch from 64bit.backup
author Henry Thompson <ht@markup.co.uk>
date Thu, 16 Dec 2021 18:48:58 +0000
parents 308d34e9f07d
children
line wrap: on
line diff
--- a/lisp/code-init.el	Fri Jul 24 14:48:46 2015 +0100
+++ b/lisp/code-init.el	Thu Dec 16 18:48:58 2021 +0000
@@ -35,7 +35,7 @@
 
 (defcustom eol-detection-enabled-p (or (featurep 'mule)
 				       (memq system-type '(windows-nt
-							   cygwin32))
+							   cygwin32 cygwin64))
 				       (featurep 'unix-default-eol-detection))
 "True if XEmacs automatically detects the EOL type when reading files.
 Normally, this is always the case on Windows or when international (Mule)
@@ -71,7 +71,7 @@
 (defun coding-system-current-system-configuration ()
   "Function to decide which default coding system configuration applies."
   (cond ((featurep 'cygwin-use-utf-8) 'cygwin-utf-8)
-	((memq system-type '(windows-nt cygwin32))
+	((memq system-type '(windows-nt cygwin32 cygwin64))
 	 (if (featurep 'mule) 'windows-mule 'windows-no-mule))
 	((featurep 'mule) 'mule)
 	(eol-detection-enabled-p 'no-mule-eol-detection)