From: Stefan Monnier Date: Sun, 27 May 2001 11:12:13 +0000 (+0000) Subject: (byte-compile-inline-expand): Fix the arg of `load' again. X-Git-Tag: emacs-pretest-21.0.104~379 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=28881a56aa065339b4e875574eae80e21895d009;p=emacs.git (byte-compile-inline-expand): Fix the arg of `load' again. --- 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))