changeset 1348:31b70e3e9ce7

[xemacs-hg @ 2003-03-09 13:24:46 by ben] oops again file-coding.c: Disable new check for the moment since it's all wrong and causes crashes.
author ben
date Sun, 09 Mar 2003 13:24:48 +0000
parents 8d350b095c21
children 2e6e691f6649
files src/ChangeLog src/file-coding.c
diffstat 2 files changed, 10 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/src/ChangeLog	Sun Mar 09 12:59:45 2003 +0000
+++ b/src/ChangeLog	Sun Mar 09 13:24:48 2003 +0000
@@ -1,3 +1,10 @@
+2003-03-09  Ben Wing  <ben@xemacs.org>
+
+	* file-coding.c:
+	* file-coding.c (look_for_coding_system_magic_cookie):
+	Disable new check for the moment since it's all wrong and
+	causes crashes.
+
 2003-03-09  Ben Wing  <ben@xemacs.org>
 
 	* file-coding.c:
--- a/src/file-coding.c	Sun Mar 09 12:59:45 2003 +0000
+++ b/src/file-coding.c	Sun Mar 09 13:24:48 2003 +0000
@@ -3855,6 +3855,8 @@
 	break;
       }
 
+#if 0
+  /* #### Totally wrong as is, rewrite */
   /* Look for initial ;;;###coding system */
 
   {
@@ -3866,6 +3868,7 @@
 	snarf_coding_system (data + ind + LENGTH (";;;###coding system: "),
 			     len - ind - LENGTH (";;;###coding system: "));
   }
+#endif /* 0 */
 
   return Qnil;
 }