diff options
author | Richard M. Stallman <rms@gnu.org> | 1998-07-05 20:30:39 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1998-07-05 20:30:39 +0000 |
commit | dc14ae363e8f131b7849eb7780a49199123d808a (patch) | |
tree | 2264626678b18850a3845c113dbbcc8b350ea53b /lisp/emacs-lisp | |
parent | 8e4589447e9c48f20012bf072e5904b788d6a02d (diff) | |
download | emacs-dc14ae363e8f131b7849eb7780a49199123d808a.tar.gz emacs-dc14ae363e8f131b7849eb7780a49199123d808a.tar.bz2 emacs-dc14ae363e8f131b7849eb7780a49199123d808a.zip |
(byte-compile-file): Bind set-auto-coding-for-load to t.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/bytecomp.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/bytecomp.el b/lisp/emacs-lisp/bytecomp.el index 8937462a67a..d8fbd25aeb4 100644 --- a/lisp/emacs-lisp/bytecomp.el +++ b/lisp/emacs-lisp/bytecomp.el @@ -9,7 +9,7 @@ ;;; This version incorporates changes up to version 2.10 of the ;;; Zawinski-Furuseth compiler. -(defconst byte-compile-version "$Revision: 2.46 $") +(defconst byte-compile-version "$Revision: 2.47 $") ;; This file is part of GNU Emacs. @@ -1274,6 +1274,7 @@ The value is t if there were no errors, nil if errors." (if byte-compile-verbose (message "Compiling %s..." filename)) (let ((byte-compile-current-file filename) + (set-auto-coding-for-load t) target-file input-buffer output-buffer byte-compile-dest-file) (setq target-file (byte-compile-dest-file filename)) |