Mercurial > hg > xemacs-beta
changeset 4227:dd9c1d5f5319
[xemacs-hg @ 2007-10-15 10:53:33 by aidan]
Use raw-text, not no-conversion for iso-8859-1 on non-Mule.
author | aidan |
---|---|
date | Mon, 15 Oct 2007 10:53:34 +0000 |
parents | 9b4442ac18c7 |
children | ce594b233b20 |
files | lisp/ChangeLog lisp/coding.el |
diffstat | 2 files changed, 10 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- 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 <kehoea@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@xemacs.org> * glyphs.el (init-glyphs): Use more sensible image conversion
--- 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")