Mercurial > emacs
diff lisp/emacs-lisp/autoload.el @ 17001:ce8565274e49
(update-file-autoloads): Read loaddefs.el without
any code conversion.
author | Karl Heuer <kwzh@gnu.org> |
---|---|
date | Thu, 20 Feb 1997 05:39:18 +0000 |
parents | 22c9b578e220 |
children | b2c8fb8139c8 |
line wrap: on
line diff
--- a/lisp/emacs-lisp/autoload.el Thu Feb 20 05:38:08 1997 +0000 +++ b/lisp/emacs-lisp/autoload.el Thu Feb 20 05:39:18 1997 +0000 @@ -292,7 +292,9 @@ ;; the local variables section if it's there. (if existing-buffer (set-buffer existing-buffer)) - (set-buffer (find-file-noselect generated-autoload-file)) + ;; We must read/write the file without any code conversion. + (let ((coding-system-for-read 'no-conversion)) + (set-buffer (find-file-noselect generated-autoload-file))) (save-excursion (save-restriction (widen)