# HG changeset patch # User aidan # Date 1192445614 0 # Node ID dd9c1d5f5319455574424991967a10ae257efa3e # Parent 9b4442ac18c7ec6721be800a612729c29d04419a [xemacs-hg @ 2007-10-15 10:53:33 by aidan] Use raw-text, not no-conversion for iso-8859-1 on non-Mule. diff -r 9b4442ac18c7 -r dd9c1d5f5319 lisp/ChangeLog --- a/lisp/ChangeLog Mon Oct 15 09:55:50 2007 +0000 +++ b/lisp/ChangeLog Mon Oct 15 10:53:34 2007 +0000 @@ -1,3 +1,10 @@ +2007-10-14 Aidan Kehoe + + * 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 * glyphs.el (init-glyphs): Use more sensible image conversion diff -r 9b4442ac18c7 -r dd9c1d5f5319 lisp/coding.el --- a/lisp/coding.el Mon Oct 15 09:55:50 2007 +0000 +++ b/lisp/coding.el Mon Oct 15 10:53:34 2007 +0000 @@ -266,11 +266,11 @@ (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")