From bab0036837b17b611b6a5e9ef5e40f6abf8c3546 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Sun, 21 Dec 1997 02:26:48 +0000 Subject: [PATCH] (jka-compr-insert-file-contents): If enable-multibyte-characters is nil, decode as raw-text. --- lisp/jka-compr.el | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lisp/jka-compr.el b/lisp/jka-compr.el index 58453869f92..f66b84291c2 100644 --- a/lisp/jka-compr.el +++ b/lisp/jka-compr.el @@ -504,6 +504,10 @@ There should be no more than seven characters after the final `/'." size start (coding-system-for-read (or coding-system-for-read + ;; If multibyte characters are disabled, + ;; don't do that conversion. + (and (null enable-multibyte-characters) + 'raw-text) (let ((tail file-coding-system-alist) (newfile (jka-compr-byte-compiler-base-file-name file)) -- 2.39.2