[COMMIT] Use raw-text, not no-conversion for iso-8859-1 on non-Mule.

Aidan Kehoe kehoea at parhasard.net
Mon Oct 15 10:13:37 EDT 2007


lisp/ChangeLog addition:

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. 


XEmacs Trunk source patch:
Diff command:   cvs -q diff -u
Files affected: lisp/coding.el
===================================================================
RCS

Index: lisp/coding.el
===================================================================
RCS file: /pack/xemacscvs/XEmacs/xemacs/lisp/coding.el,v
retrieving revision 1.12
diff -u -r1.12 coding.el
--- lisp/coding.el	2007/10/13 14:08:28	1.12
+++ lisp/coding.el	2007/10/15 10:53:01
@@ -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")
 

-- 
On the quay of the little Black Sea port, where the rescued pair came once
more into contact with civilization, Dobrinton was bitten by a dog which was
assumed to be mad, though it may only have been indiscriminating. (Saki)




More information about the XEmacs-Patches mailing list