CVS update by aidan xemacs/lisp ...

xemacs-cvs at xemacs.org xemacs-cvs at xemacs.org
Mon Oct 15 06:53:35 EDT 2007


  User: aidan   
  Date: 07/10/15 12:53:35

  Modified:    xemacs/lisp ChangeLog coding.el
Log:
Use raw-text, not no-conversion for iso-8859-1 on non-Mule.

Revision  Changes    Path
1.851     +7 -0      XEmacs/xemacs/lisp/ChangeLog

Index: ChangeLog
===================================================================
RCS file: /pack/xemacscvs/XEmacs/xemacs/lisp/ChangeLog,v
retrieving revision 1.850
retrieving revision 1.851
diff -u -p -r1.850 -r1.851
--- ChangeLog	2007/10/15 09:55:43	1.850
+++ ChangeLog	2007/10/15 10:53:33	1.851
@@ -1,3 +1,10 @@
+2007-10-14  Aidan Kehoe  <kehoea at parhasard.net>
+
+	* coding.el:
+	Use raw-text, not no-conversion for iso-8859-1 on non-Mule;
+	preserves the line ending autodetection, but doesn't do coding
+	system autodetection. Thank you Stephen. 
+
 2007-10-15  Didier Verna  <didier at xemacs.org>
 
 	* glyphs.el (init-glyphs): Use more sensible image conversion



1.13      +3 -3      XEmacs/xemacs/lisp/coding.el

Index: coding.el
===================================================================
RCS file: /pack/xemacscvs/XEmacs/xemacs/lisp/coding.el,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -p -r1.12 -r1.13
--- coding.el	2007/10/13 14:08:28	1.12
+++ coding.el	2007/10/15 10:53:34	1.13
@@ -266,11 +266,11 @@ Does not modify STR.  Returns the encode
 (when (not (featurep 'mule))
   (define-coding-system-alias 'escape-quoted 'binary)
   ;; these are so that gnus and friends work when not mule
-  (define-coding-system-alias 'iso-8859-1 'no-conversion)
+  (define-coding-system-alias 'iso-8859-1 'raw-text)
   ;; We're misrepresenting ourselves to the gnus code by saying we support
   ;; both.
-  ; (define-coding-system-alias 'iso-8859-2 'no-conversion)
-  (define-coding-system-alias 'ctext 'binary))
+  ; (define-coding-system-alias 'iso-8859-2 'raw-text)
+  (define-coding-system-alias 'ctext 'raw-text))
 
 (make-compatible-variable 'enable-multibyte-characters "Unimplemented")
 





More information about the XEmacs-CVS mailing list