Mercurial > emacs
changeset 37907:a8fffaec8725
(byte-compile-inline-expand): Fix the arg of `load' again.
author | Stefan Monnier <monnier@iro.umontreal.ca> |
---|---|
date | Sun, 27 May 2001 11:12:13 +0000 |
parents | 05a85bef4684 |
children | ba28e6b7a67b |
files | lisp/emacs-lisp/byte-opt.el |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- 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))