summaryrefslogtreecommitdiff
path: root/lisp/emacs-lisp
diff options
context:
space:
mode:
authorKarl Heuer <kwzh@gnu.org>1997-02-20 05:40:01 +0000
committerKarl Heuer <kwzh@gnu.org>1997-02-20 05:40:01 +0000
commitb8575ac32e3e8d8cffc1753017822c6423044707 (patch)
tree6e073a1b5ba2d26694efdda64aa7cef1f4fae680 /lisp/emacs-lisp
parenta8f15301e6cdc0bc38e23983c9d2ae5e843b2bcd (diff)
downloademacs-b8575ac32e3e8d8cffc1753017822c6423044707.tar.gz
emacs-b8575ac32e3e8d8cffc1753017822c6423044707.tar.bz2
emacs-b8575ac32e3e8d8cffc1753017822c6423044707.zip
(byte-compile-file): Write a compiled file without
any code conversion.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r--lisp/emacs-lisp/bytecomp.el5
1 files changed, 3 insertions, 2 deletions
diff --git a/lisp/emacs-lisp/bytecomp.el b/lisp/emacs-lisp/bytecomp.el
index 1ffd3cae2ca..2a9694b8065 100644
--- a/lisp/emacs-lisp/bytecomp.el
+++ b/lisp/emacs-lisp/bytecomp.el
@@ -10,7 +10,7 @@
;;; This version incorporates changes up to version 2.10 of the
;;; Zawinski-Furuseth compiler.
-(defconst byte-compile-version "$Revision: 2.24 $")
+(defconst byte-compile-version "$Revision: 2.25 $")
;; This file is part of GNU Emacs.
@@ -1268,7 +1268,8 @@ With prefix arg (noninteractively: 2nd arg), load the file after compiling."
(insert "\n") ; aaah, unix.
(let ((vms-stmlf-recfm t))
(if (file-writable-p target-file)
- (let ((kanji-flag nil)) ; for nemacs, from Nakagawa Takayuki
+ ;; We must disable any code conversion here.
+ (let ((coding-system-for-read 'no-conversion))
(if (or (eq system-type 'ms-dos) (eq system-type 'windows-nt))
(setq buffer-file-type t))
(write-region 1 (point-max) target-file))