aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/emacs-lisp/autoload.el
diff options
context:
space:
mode:
authorRichard M. Stallman <[email protected]>1998-03-09 01:01:36 +0000
committerRichard M. Stallman <[email protected]>1998-03-09 01:01:36 +0000
commit8539959b7b9042eb29d51d5199e146fa97f120b1 (patch)
tree581b4a201f5e9ab50b95cb8142a3fbbe4d14377c /lisp/emacs-lisp/autoload.el
parent3d2f23d923f2dbb709359d263deaa1800528809c (diff)
(update-file-autoloads):
Undo 1997-08-23 change.
Diffstat (limited to 'lisp/emacs-lisp/autoload.el')
-rw-r--r--lisp/emacs-lisp/autoload.el5
1 files changed, 1 insertions, 4 deletions
diff --git a/lisp/emacs-lisp/autoload.el b/lisp/emacs-lisp/autoload.el
index 1a85cd7c68..a8e57669de 100644
--- a/lisp/emacs-lisp/autoload.el
+++ b/lisp/emacs-lisp/autoload.el
@@ -310,10 +310,7 @@ are used."
(set-buffer existing-buffer))
;; We must read/write the file without any code conversion.
(let ((coding-system-for-read 'no-conversion))
- (set-buffer (find-file-noselect
- (expand-file-name generated-autoload-file
- (expand-file-name "lisp"
- source-directory)))))
+ (set-buffer (find-file-noselect generated-autoload-file)))
(or (> (buffer-size) 0)
(error "Autoloads file %s does not exist" buffer-file-name))
(or (file-writable-p buffer-file-name)