changeset 37889:4a5ea0885c7b

(byte-compile-inline-expand): Fix the arg of `load'. From Dave Love <fx@gnu.org>.
author Stefan Monnier <monnier@iro.umontreal.ca>
date Fri, 25 May 2001 18:43:21 +0000
parents 2e08c7d128e6
children 08ff6c17452d
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	Fri May 25 11:47:37 2001 +0000
+++ b/lisp/emacs-lisp/byte-opt.el	Fri May 25 18:43:21 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))