diff options
author | Stefan Monnier <monnier@iro.umontreal.ca> | 2001-05-27 11:12:13 +0000 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2001-05-27 11:12:13 +0000 |
commit | 28881a56aa065339b4e875574eae80e21895d009 (patch) | |
tree | a5456457168c89b0d606074f0ded44c57bb5451a /lisp/emacs-lisp/byte-opt.el | |
parent | 4cc56269c2df31a3104f150a694f96eb56ab5cc9 (diff) | |
download | emacs-28881a56aa065339b4e875574eae80e21895d009.tar.gz |
(byte-compile-inline-expand): Fix the arg of `load' again.
Diffstat (limited to 'lisp/emacs-lisp/byte-opt.el')
-rw-r--r-- | lisp/emacs-lisp/byte-opt.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/byte-opt.el b/lisp/emacs-lisp/byte-opt.el index 5c713b13449..95c9e714372 100644 --- a/lisp/emacs-lisp/byte-opt.el +++ b/lisp/emacs-lisp/byte-opt.el @@ -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)) |