comparison lisp/coding.el @ 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 38ef5a6da799
children e34711681f30 68d1ca56cffa
comparison
equal deleted inserted replaced
4226:9b4442ac18c7 4227:dd9c1d5f5319
264 'dontusethis-set-value-keyboard-coding-system-handler) 264 'dontusethis-set-value-keyboard-coding-system-handler)
265 265
266 (when (not (featurep 'mule)) 266 (when (not (featurep 'mule))
267 (define-coding-system-alias 'escape-quoted 'binary) 267 (define-coding-system-alias 'escape-quoted 'binary)
268 ;; these are so that gnus and friends work when not mule 268 ;; these are so that gnus and friends work when not mule
269 (define-coding-system-alias 'iso-8859-1 'no-conversion) 269 (define-coding-system-alias 'iso-8859-1 'raw-text)
270 ;; We're misrepresenting ourselves to the gnus code by saying we support 270 ;; We're misrepresenting ourselves to the gnus code by saying we support
271 ;; both. 271 ;; both.
272 ; (define-coding-system-alias 'iso-8859-2 'no-conversion) 272 ; (define-coding-system-alias 'iso-8859-2 'raw-text)
273 (define-coding-system-alias 'ctext 'binary)) 273 (define-coding-system-alias 'ctext 'raw-text))
274 274
275 (make-compatible-variable 'enable-multibyte-characters "Unimplemented") 275 (make-compatible-variable 'enable-multibyte-characters "Unimplemented")
276 276
277 ;;; coding.el ends here 277 ;;; coding.el ends here