# HG changeset patch # User Stefan Monnier # Date 990961933 0 # Node ID a8fffaec872599aa0b2d39a8fa40c0e77f533722 # Parent 05a85bef4684188d11b08848d0e2b4e956257798 (byte-compile-inline-expand): Fix the arg of `load' again. diff -r 05a85bef4684 -r a8fffaec8725 lisp/emacs-lisp/byte-opt.el --- a/lisp/emacs-lisp/byte-opt.el Sun May 27 11:11:24 2001 +0000 +++ b/lisp/emacs-lisp/byte-opt.el Sun May 27 11:12:13 2001 +0000 @@ -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))