aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Monnier2001-05-27 11:12:13 +0000
committerStefan Monnier2001-05-27 11:12:13 +0000
commit28881a56aa065339b4e875574eae80e21895d009 (patch)
treea5456457168c89b0d606074f0ded44c57bb5451a
parent4cc56269c2df31a3104f150a694f96eb56ab5cc9 (diff)
downloademacs-28881a56aa065339b4e875574eae80e21895d009.tar.gz
emacs-28881a56aa065339b4e875574eae80e21895d009.zip
(byte-compile-inline-expand): Fix the arg of `load' again.
-rw-r--r--lisp/emacs-lisp/byte-opt.el2
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 @@
265 form) 265 form)
266 ;; else 266 ;; else
267 (when (and (consp fn) (eq (car fn) 'autoload)) 267 (when (and (consp fn) (eq (car fn) 'autoload))
268 (load (nth 2 fn)) 268 (load (nth 1 fn))
269 (setq fn (or (and (fboundp name) (symbol-function name)) 269 (setq fn (or (and (fboundp name) (symbol-function name))
270 (cdr (assq name byte-compile-function-environment))))) 270 (cdr (assq name byte-compile-function-environment)))))
271 (if (and (consp fn) (eq (car fn) 'autoload)) 271 (if (and (consp fn) (eq (car fn) 'autoload))