From 1b26bb036ab438e3e2c98ee8f09b2c6db472692d Mon Sep 17 00:00:00 2001 From: tomo Date: Fri, 4 Jun 1999 02:19:43 +0000 Subject: [PATCH] (byte-compile-insert-header): Use `raw-text' instead of `no-conversion'. --- lisp/bytecomp.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lisp/bytecomp.el b/lisp/bytecomp.el index d8ab789..1ce8d27 100644 --- a/lisp/bytecomp.el +++ b/lisp/bytecomp.el @@ -1747,7 +1747,7 @@ With argument, insert value in current buffer after the form." ;; file if under Mule. If there are any extended characters in the ;; input file, use `escape-quoted' to make sure that both binary and ;; extended characters are output properly and distinguished properly. - ;; Otherwise, use `no-conversion' for maximum portability with non-Mule + ;; Otherwise, use `raw-text' for maximum portability with non-Mule ;; Emacsen. (when (featurep 'mule) (defvar buffer-file-coding-system) @@ -1758,7 +1758,7 @@ With argument, insert value in current buffer after the form." (skip-chars-forward (concat (char-to-string 0) "-" (char-to-string 255))) (eq (point) (point-max))) - (setq buffer-file-coding-system 'no-conversion) + (setq buffer-file-coding-system 'raw-text) (insert "(require 'mule)\n;;;###coding system: escape-quoted\n") (setq buffer-file-coding-system 'escape-quoted) ;; #### Lazy loading not yet implemented for MULE files -- 1.7.10.4