(byte-compile-inline-expand):

Fix the arg of `load'.  From Dave Love <fx@gnu.org>.
This commit is contained in:
Stefan Monnier 2001-05-25 18:43:50 +00:00
parent 4e7e1f0302
commit a434b175a9
2 changed files with 6 additions and 1 deletions

View file

@ -265,7 +265,7 @@
form)
;; else
(when (and (consp fn) (eq (car fn) 'autoload))
(load (nth 2 fn))
(load (nth 1 fn))
(setq fn (or (and (fboundp name) (symbol-function name))
(cdr (assq name byte-compile-function-environment)))))
(if (and (consp fn) (eq (car fn) 'autoload))