diff options
author | Stefan Monnier <monnier@iro.umontreal.ca> | 2001-05-25 18:43:50 +0000 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2001-05-25 18:43:50 +0000 |
commit | a434b175a9e797c920118482dae7d6422a28eae7 (patch) | |
tree | c6a61885034554dfd03b50b856b71414464eab85 /lisp/emacs-lisp | |
parent | 4e7e1f0302e8f47adb680c77b4fdaf638dc40d4e (diff) | |
download | emacs-a434b175a9e797c920118482dae7d6422a28eae7.tar.gz emacs-a434b175a9e797c920118482dae7d6422a28eae7.tar.bz2 emacs-a434b175a9e797c920118482dae7d6422a28eae7.zip |
(byte-compile-inline-expand):
Fix the arg of `load'. From Dave Love <fx@gnu.org>.
Diffstat (limited to 'lisp/emacs-lisp')
-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)) |